diff options
author | Albert Herranz <albert_herranz@yahoo.es> | 2009-12-18 00:27:19 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-18 00:45:31 +0100 |
commit | c0bba0d25ee13f4be4598730057a25758014d7f1 (patch) | |
tree | 322d71041c823689b50d5b1a0ab0a0e1e0fb1e0d /drivers/mmc/host/sdhci.h | |
parent | sdio: initialise SDIO functions and update card->sdio_funcs in lockstep (diff) | |
download | linux-c0bba0d25ee13f4be4598730057a25758014d7f1.tar.xz linux-c0bba0d25ee13f4be4598730057a25758014d7f1.zip |
sdhci: protect header file against multi inclusion
Signed-off-by: Albert Herranz <albert_herranz@yahoo.es>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/mmc/host/sdhci.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index ce5f1d73dc04..842f46f94284 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h @@ -8,6 +8,8 @@ * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. */ +#ifndef __SDHCI_H +#define __SDHCI_H #include <linux/scatterlist.h> #include <linux/compiler.h> @@ -408,3 +410,5 @@ extern void sdhci_remove_host(struct sdhci_host *host, int dead); extern int sdhci_suspend_host(struct sdhci_host *host, pm_message_t state); extern int sdhci_resume_host(struct sdhci_host *host); #endif + +#endif /* __SDHCI_H */ |