diff options
author | Igor Grinberg <grinberg@compulab.co.il> | 2011-04-26 16:25:56 (GMT) |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-05-03 07:38:58 (GMT) |
commit | 11383a9bcc213cd2b55e2aef863ef2a8b3d7b62c (patch) | |
tree | da738e296db096fb2c133ee69f0b4a68351d7e2d /arch/arm/plat-omap | |
parent | 21b42731e6ab1ccbbe9ad1b639c5d78eecad8432 (diff) | |
download | linux-fsl-qoriq-11383a9bcc213cd2b55e2aef863ef2a8b3d7b62c.tar.xz |
arm: omap: gpmc-smsc911x: minor style fixes
replace "printk(KERN_ERR" by "pr_err("
and fix needlessly multi-lined #ifdef
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Acked-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r-- | arch/arm/plat-omap/include/plat/gpmc-smsc911x.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/include/plat/gpmc-smsc911x.h b/arch/arm/plat-omap/include/plat/gpmc-smsc911x.h index d3f1579..ea6c9c8 100644 --- a/arch/arm/plat-omap/include/plat/gpmc-smsc911x.h +++ b/arch/arm/plat-omap/include/plat/gpmc-smsc911x.h @@ -21,8 +21,7 @@ struct omap_smsc911x_platform_data { u32 flags; }; -#if defined(CONFIG_SMSC911X) || \ - defined(CONFIG_SMSC911X_MODULE) +#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) extern void gpmc_smsc911x_init(struct omap_smsc911x_platform_data *d); |