Skip to content

Commit

Permalink
mmc: Standardize header file inclusion checks.
Browse files Browse the repository at this point in the history
Standardize the checks for multiple MMC header file inclusion,
including adding comments to terminating #endif's, and fixing
one incorrect comment.

Signed-off-by: Robert P. J. Day <[email protected]>
Signed-off-by: Chris Ball <[email protected]>
  • Loading branch information
rpjday authored and cjb committed Jul 20, 2011
1 parent 94cc6a8 commit 100e918
Show file tree
Hide file tree
Showing 17 changed files with 41 additions and 46 deletions.
6 changes: 3 additions & 3 deletions include/linux/mmc/boot.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef MMC_BOOT_H
#define MMC_BOOT_H
#ifndef LINUX_MMC_BOOT_H
#define LINUX_MMC_BOOT_H

enum { MMC_PROGRESS_ENTER, MMC_PROGRESS_INIT,
MMC_PROGRESS_LOAD, MMC_PROGRESS_DONE };

#endif
#endif /* LINUX_MMC_BOOT_H */
2 changes: 1 addition & 1 deletion include/linux/mmc/card.h
Original file line number Diff line number Diff line change
Expand Up @@ -403,4 +403,4 @@ extern void mmc_unregister_driver(struct mmc_driver *);
extern void mmc_fixup_device(struct mmc_card *card,
const struct mmc_fixup *table);

#endif
#endif /* LINUX_MMC_CARD_H */
2 changes: 1 addition & 1 deletion include/linux/mmc/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,4 @@ static inline void mmc_claim_host(struct mmc_host *host)

extern u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max);

#endif
#endif /* LINUX_MMC_CORE_H */
6 changes: 3 additions & 3 deletions include/linux/mmc/dw_mmc.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* (at your option) any later version.
*/

#ifndef _LINUX_MMC_DW_MMC_H_
#define _LINUX_MMC_DW_MMC_H_
#ifndef LINUX_MMC_DW_MMC_H
#define LINUX_MMC_DW_MMC_H

#define MAX_MCI_SLOTS 2

Expand Down Expand Up @@ -219,4 +219,4 @@ struct dw_mci_board {
struct block_settings *blk_settings;
};

#endif /* _LINUX_MMC_DW_MMC_H_ */
#endif /* LINUX_MMC_DW_MMC_H */
3 changes: 1 addition & 2 deletions include/linux/mmc/host.h
Original file line number Diff line number Diff line change
Expand Up @@ -373,5 +373,4 @@ static inline int mmc_host_cmd23(struct mmc_host *host)
{
return host->caps & MMC_CAP_CMD23;
}
#endif

#endif /* LINUX_MMC_HOST_H */
2 changes: 1 addition & 1 deletion include/linux/mmc/ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ struct mmc_ioc_cmd {
* block device operations.
*/
#define MMC_IOC_MAX_BYTES (512L * 256)
#endif /* LINUX_MMC_IOCTL_H */
#endif /* LINUX_MMC_IOCTL_H */
7 changes: 3 additions & 4 deletions include/linux/mmc/mmc.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
* 15 May 2002
*/

#ifndef MMC_MMC_H
#define MMC_MMC_H
#ifndef LINUX_MMC_MMC_H
#define LINUX_MMC_MMC_H

/* Standard MMC commands (4.1) type argument response */
/* class 1 */
Expand Down Expand Up @@ -327,5 +327,4 @@ struct _mmc_csd {
#define MMC_SWITCH_MODE_CLEAR_BITS 0x02 /* Clear bits which are 1 in value */
#define MMC_SWITCH_MODE_WRITE_BYTE 0x03 /* Set target to value */

#endif /* MMC_MMC_PROTOCOL_H */

#endif /* LINUX_MMC_MMC_H */
2 changes: 1 addition & 1 deletion include/linux/mmc/pm.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ typedef unsigned int mmc_pm_flag_t;
#define MMC_PM_KEEP_POWER (1 << 0) /* preserve card power during suspend */
#define MMC_PM_WAKE_SDIO_IRQ (1 << 1) /* wake up host system on SDIO IRQ assertion */

#endif
#endif /* LINUX_MMC_PM_H */
7 changes: 3 additions & 4 deletions include/linux/mmc/sd.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* your option) any later version.
*/

#ifndef MMC_SD_H
#define MMC_SD_H
#ifndef LINUX_MMC_SD_H
#define LINUX_MMC_SD_H

/* SD commands type argument response */
/* class 0 */
Expand Down Expand Up @@ -91,5 +91,4 @@
#define SD_SWITCH_ACCESS_DEF 0
#define SD_SWITCH_ACCESS_HS 1

#endif

#endif /* LINUX_MMC_SD_H */
6 changes: 3 additions & 3 deletions include/linux/mmc/sdhci-spear.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* warranty of any kind, whether express or implied.
*/

#ifndef MMC_SDHCI_SPEAR_H
#define MMC_SDHCI_SPEAR_H
#ifndef LINUX_MMC_SDHCI_SPEAR_H
#define LINUX_MMC_SDHCI_SPEAR_H

#include <linux/platform_device.h>
/*
Expand All @@ -39,4 +39,4 @@ sdhci_set_plat_data(struct platform_device *pdev, struct sdhci_plat_data *data)
pdev->dev.platform_data = data;
}

#endif /* MMC_SDHCI_SPEAR_H */
#endif /* LINUX_MMC_SDHCI_SPEAR_H */
6 changes: 3 additions & 3 deletions include/linux/mmc/sdhci.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +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
#ifndef LINUX_MMC_SDHCI_H
#define LINUX_MMC_SDHCI_H

#include <linux/scatterlist.h>
#include <linux/compiler.h>
Expand Down Expand Up @@ -162,4 +162,4 @@ struct sdhci_host {

unsigned long private[0] ____cacheline_aligned;
};
#endif /* __SDHCI_H */
#endif /* LINUX_MMC_SDHCI_H */
7 changes: 3 additions & 4 deletions include/linux/mmc/sdio.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* your option) any later version.
*/

#ifndef MMC_SDIO_H
#define MMC_SDIO_H
#ifndef LINUX_MMC_SDIO_H
#define LINUX_MMC_SDIO_H

/* SDIO commands type argument response */
#define SD_IO_SEND_OP_COND 5 /* bcr [23:0] OCR R4 */
Expand Down Expand Up @@ -161,5 +161,4 @@

#define SDIO_FBR_BLKSIZE 0x10 /* block size (2 bytes) */

#endif

#endif /* LINUX_MMC_SDIO_H */
7 changes: 3 additions & 4 deletions include/linux/mmc/sdio_func.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* your option) any later version.
*/

#ifndef MMC_SDIO_FUNC_H
#define MMC_SDIO_FUNC_H
#ifndef LINUX_MMC_SDIO_FUNC_H
#define LINUX_MMC_SDIO_FUNC_H

#include <linux/device.h>
#include <linux/mod_devicetable.h>
Expand Down Expand Up @@ -161,5 +161,4 @@ extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
extern mmc_pm_flag_t sdio_get_host_pm_caps(struct sdio_func *func);
extern int sdio_set_host_pm_flags(struct sdio_func *func, mmc_pm_flag_t flags);

#endif

#endif /* LINUX_MMC_SDIO_FUNC_H */
6 changes: 3 additions & 3 deletions include/linux/mmc/sdio_ids.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* SDIO Classes, Interface Types, Manufacturer IDs, etc.
*/

#ifndef MMC_SDIO_IDS_H
#define MMC_SDIO_IDS_H
#ifndef LINUX_MMC_SDIO_IDS_H
#define LINUX_MMC_SDIO_IDS_H

/*
* Standard SDIO Function Interfaces
Expand Down Expand Up @@ -44,4 +44,4 @@
#define SDIO_DEVICE_ID_SIANO_NOVA_A0 0x1100
#define SDIO_DEVICE_ID_SIANO_STELLAR 0x5347

#endif
#endif /* LINUX_MMC_SDIO_IDS_H */
6 changes: 3 additions & 3 deletions include/linux/mmc/sh_mmcif.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
*
*/

#ifndef __SH_MMCIF_H__
#define __SH_MMCIF_H__
#ifndef LINUX_MMC_SH_MMCIF_H
#define LINUX_MMC_SH_MMCIF_H

#include <linux/io.h>
#include <linux/platform_device.h>
Expand Down Expand Up @@ -220,4 +220,4 @@ static inline void sh_mmcif_boot_init(void __iomem *base)
sh_mmcif_boot_cmd(base, 0x03400040, 0x00010000);
}

#endif /* __SH_MMCIF_H__ */
#endif /* LINUX_MMC_SH_MMCIF_H */
6 changes: 3 additions & 3 deletions include/linux/mmc/sh_mobile_sdhi.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef __SH_MOBILE_SDHI_H__
#define __SH_MOBILE_SDHI_H__
#ifndef LINUX_MMC_SH_MOBILE_SDHI_H
#define LINUX_MMC_SH_MOBILE_SDHI_H

#include <linux/types.h>

Expand All @@ -17,4 +17,4 @@ struct sh_mobile_sdhi_info {
int (*get_cd)(struct platform_device *pdev);
};

#endif /* __SH_MOBILE_SDHI_H__ */
#endif /* LINUX_MMC_SH_MOBILE_SDHI_H */
6 changes: 3 additions & 3 deletions include/linux/mmc/tmio.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
*
* TC6393XB TC6391XB TC6387XB T7L66XB ASIC3
*/
#ifndef _LINUX_MMC_TMIO_H_
#define _LINUX_MMC_TMIO_H_
#ifndef LINUX_MMC_TMIO_H
#define LINUX_MMC_TMIO_H

#define CTL_SD_CMD 0x00
#define CTL_ARG_REG 0x04
Expand Down Expand Up @@ -60,4 +60,4 @@

#define TMIO_BBS 512 /* Boot block size */

#endif /* _LINUX_MMC_TMIO_H_ */
#endif /* LINUX_MMC_TMIO_H */

0 comments on commit 100e918

Please sign in to comment.