Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge master.kernel.org:/home/rmk/linux-2.6-mmc

+8 -8
-1
drivers/mmc/mmc_block.c
··· 203 203 brq.data.flags |= MMC_DATA_READ; 204 204 } else { 205 205 brq.cmd.opcode = MMC_WRITE_BLOCK; 206 - brq.cmd.flags = MMC_RSP_R1B; 207 206 brq.data.flags |= MMC_DATA_WRITE; 208 207 brq.data.blocks = 1; 209 208 }
+8 -7
drivers/mmc/wbsd.c
··· 201 201 { 202 202 u8 setup; 203 203 204 - printk(KERN_ERR DRIVER_NAME ": Resetting chip\n"); 204 + printk(KERN_ERR "%s: Resetting chip\n", mmc_hostname(host->mmc)); 205 205 206 206 /* 207 207 * Soft reset of chip (SD/MMC part). ··· 880 880 */ 881 881 if (count) 882 882 { 883 - printk(KERN_ERR DRIVER_NAME ": Incomplete DMA " 884 - "transfer. %d bytes left.\n", count); 883 + printk(KERN_ERR "%s: Incomplete DMA transfer. " 884 + "%d bytes left.\n", 885 + mmc_hostname(host->mmc), count); 885 886 886 887 data->error = MMC_ERR_FAILED; 887 888 } ··· 1170 1169 1171 1170 if (host->mrq) 1172 1171 { 1173 - printk(KERN_ERR DRIVER_NAME 1174 - ": Card removed during transfer!\n"); 1172 + printk(KERN_ERR "%s: Card removed during transfer!\n", 1173 + mmc_hostname(host->mmc)); 1175 1174 wbsd_reset(host); 1176 1175 1177 1176 host->mrq->cmd->error = MMC_ERR_FAILED; ··· 1853 1852 /* 1854 1853 * See if chip needs to be configured. 1855 1854 */ 1856 - if (pnp && (host->config != 0)) 1855 + if (pnp) 1857 1856 { 1858 - if (!wbsd_chip_validate(host)) 1857 + if ((host->config != 0) && !wbsd_chip_validate(host)) 1859 1858 { 1860 1859 printk(KERN_WARNING DRIVER_NAME 1861 1860 ": PnP active but chip not configured! "