Lines Matching refs:msh
21 struct memstick_host *msh;
136 struct memstick_dev *card = host->msh->card;
394 struct memstick_host *msh = host->msh;
409 rc = memstick_next_req(msh, &host->req);
420 static void rtsx_pci_ms_request(struct memstick_host *msh)
422 struct realtek_pci_ms *host = memstick_priv(msh);
432 static int rtsx_pci_ms_set_param(struct memstick_host *msh,
435 struct realtek_pci_ms *host = memstick_priv(msh);
498 struct memstick_host *msh = host->msh;
502 memstick_suspend_host(msh);
509 struct memstick_host *msh = host->msh;
513 memstick_resume_host(msh);
528 memstick_detect_change(host->msh);
533 struct memstick_host *msh;
549 msh = memstick_alloc_host(sizeof(*host), &pdev->dev);
550 if (!msh)
553 host = memstick_priv(msh);
555 host->msh = msh;
564 msh->request = rtsx_pci_ms_request;
565 msh->set_param = rtsx_pci_ms_set_param;
566 msh->caps = MEMSTICK_CAP_PAR4;
568 rc = memstick_add_host(msh);
570 memstick_free_host(msh);
581 struct memstick_host *msh;
590 msh = host->msh;
598 dev_name(&msh->dev));
604 rc = memstick_next_req(msh, &host->req);
611 memstick_remove_host(msh);
612 memstick_free_host(msh);