From: Nicolas Pitre Date: Fri, 7 Dec 2007 04:12:46 +0000 (-0500) Subject: mmc: remove unused 'mode' from the mmc_host structure X-Git-Tag: v2.6.24-rc6~21^2 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=cc3000e4ef13fa9f388f5a37f11c0fa3cc68112b;hp=84c46a53fc4ea4ff36df783a20187b2f65dd21cc;p=linux-2.6-omap-h63xx.git mmc: remove unused 'mode' from the mmc_host structure This field and corresponding defines are simply never used anywhere in the code. But its mere presence is enough to confuse some host driver authors who attempt to rely on it. Let's eliminate the possibility for confusion and remove it entirely. Signed-off-by: Nicolas Pitre Signed-off-by: Pierre Ossman --- diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 125eee1407f..7ab962fa1d7 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -118,10 +118,6 @@ struct mmc_host { unsigned int removed:1; /* host is being removed */ #endif - unsigned int mode; /* current card mode of host */ -#define MMC_MODE_MMC 0 -#define MMC_MODE_SD 1 - struct mmc_card *card; /* device attached to this host */ wait_queue_head_t wq;