Lines Matching refs:cnt
641 int cnt; in jmb38x_ms_reset() local
648 for (cnt = 0; cnt < 20; ++cnt) { in jmb38x_ms_reset()
663 for (cnt = 0; cnt < 20; ++cnt) { in jmb38x_ms_reset()
808 int cnt; in jmb38x_ms_suspend() local
810 for (cnt = 0; cnt < jm->host_cnt; ++cnt) { in jmb38x_ms_suspend()
811 if (!jm->hosts[cnt]) in jmb38x_ms_suspend()
813 memstick_suspend_host(jm->hosts[cnt]); in jmb38x_ms_suspend()
856 int cnt, rc = 0; in jmb38x_ms_count_slots() local
858 for (cnt = 0; cnt < PCI_ROM_RESOURCE; ++cnt) { in jmb38x_ms_count_slots()
859 if (!(IORESOURCE_MEM & pci_resource_flags(pdev, cnt))) in jmb38x_ms_count_slots()
862 if (256 != pci_resource_len(pdev, cnt)) in jmb38x_ms_count_slots()
870 static struct memstick_host *jmb38x_ms_alloc_host(struct jmb38x_ms *jm, int cnt) in jmb38x_ms_alloc_host() argument
882 host->addr = ioremap(pci_resource_start(jm->pdev, cnt), in jmb38x_ms_alloc_host()
883 pci_resource_len(jm->pdev, cnt)); in jmb38x_ms_alloc_host()
888 host->id = cnt; in jmb38x_ms_alloc_host()
926 int rc, cnt; in jmb38x_ms_probe() local
946 cnt = jmb38x_ms_count_slots(pdev); in jmb38x_ms_probe()
947 if (!cnt) { in jmb38x_ms_probe()
954 + cnt * sizeof(struct memstick_host *), GFP_KERNEL); in jmb38x_ms_probe()
961 jm->host_cnt = cnt; in jmb38x_ms_probe()
964 for (cnt = 0; cnt < jm->host_cnt; ++cnt) { in jmb38x_ms_probe()
965 jm->hosts[cnt] = jmb38x_ms_alloc_host(jm, cnt); in jmb38x_ms_probe()
966 if (!jm->hosts[cnt]) in jmb38x_ms_probe()
969 rc = memstick_add_host(jm->hosts[cnt]); in jmb38x_ms_probe()
972 jmb38x_ms_free_host(jm->hosts[cnt]); in jmb38x_ms_probe()
973 jm->hosts[cnt] = NULL; in jmb38x_ms_probe()
978 if (cnt) in jmb38x_ms_probe()
997 int cnt; in jmb38x_ms_remove() local
1000 for (cnt = 0; cnt < jm->host_cnt; ++cnt) { in jmb38x_ms_remove()
1001 if (!jm->hosts[cnt]) in jmb38x_ms_remove()
1004 host = memstick_priv(jm->hosts[cnt]); in jmb38x_ms_remove()
1006 jm->hosts[cnt]->request = jmb38x_ms_dummy_submit; in jmb38x_ms_remove()
1015 jmb38x_ms_complete_cmd(jm->hosts[cnt], 1); in jmb38x_ms_remove()
1019 memstick_remove_host(jm->hosts[cnt]); in jmb38x_ms_remove()
1022 jmb38x_ms_free_host(jm->hosts[cnt]); in jmb38x_ms_remove()