bus.c (da733563be5a9da26fe81d9f007262d00b846e22) | bus.c (a303c5319c8e6ab0e744ebca118da8420043b2c3) |
---|---|
1/* 2 * linux/drivers/mmc/core/bus.c 3 * 4 * Copyright (C) 2003 Russell King, All Rights Reserved. 5 * Copyright (C) 2007 Pierre Ossman 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as --- 291 unchanged lines hidden (view full) --- 300 pr_info("%s: new %s%s%s card on SPI\n", 301 mmc_hostname(card->host), 302 mmc_card_highspeed(card) ? "high speed " : "", 303 mmc_card_ddr_mode(card) ? "DDR " : "", 304 type); 305 } else { 306 printk(KERN_INFO "%s: new %s%s%s card at address %04x\n", 307 mmc_hostname(card->host), | 1/* 2 * linux/drivers/mmc/core/bus.c 3 * 4 * Copyright (C) 2003 Russell King, All Rights Reserved. 5 * Copyright (C) 2007 Pierre Ossman 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as --- 291 unchanged lines hidden (view full) --- 300 pr_info("%s: new %s%s%s card on SPI\n", 301 mmc_hostname(card->host), 302 mmc_card_highspeed(card) ? "high speed " : "", 303 mmc_card_ddr_mode(card) ? "DDR " : "", 304 type); 305 } else { 306 printk(KERN_INFO "%s: new %s%s%s card at address %04x\n", 307 mmc_hostname(card->host), |
308 mmc_sd_card_uhs(card) ? "ultra high speed " : | 308 mmc_card_uhs(card) ? "ultra high speed " : |
309 (mmc_card_highspeed(card) ? "high speed " : ""), 310 mmc_card_ddr_mode(card) ? "DDR " : "", 311 type, card->rca); 312 } 313 314#ifdef CONFIG_DEBUG_FS 315 mmc_add_card_debugfs(card); 316#endif --- 34 unchanged lines hidden --- | 309 (mmc_card_highspeed(card) ? "high speed " : ""), 310 mmc_card_ddr_mode(card) ? "DDR " : "", 311 type, card->rca); 312 } 313 314#ifdef CONFIG_DEBUG_FS 315 mmc_add_card_debugfs(card); 316#endif --- 34 unchanged lines hidden --- |