diff options
author | Dirk Behme <dirk.behme_at_gmail.com> | 2006-12-06 20:14:04 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2007-03-02 04:47:10 -0500 |
commit | 2f5c4b6f1ce6595fd977963051a3030911ae4461 (patch) | |
tree | 798411eb2bc978f425e243040298002272a01a18 /arch/arm/mach-omap1/pm.c | |
parent | ef772f2ee31e0993dca2d59d9ee27682d39902fa (diff) |
ARM: OMAP: Fix warning in mach-omap1
Fix warning
arch/arm/mach-omap1/pm.c: In function 'omap_pm_init':
arch/arm/mach-omap1/pm.c:765: warning: ignoring return value
of 'subsys_create_file', declared with attribute
warn_unused_result
Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/pm.c')
-rw-r--r-- | arch/arm/mach-omap1/pm.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/pm.c b/arch/arm/mach-omap1/pm.c index 8ff232034871..49efe903dacd 100644 --- a/arch/arm/mach-omap1/pm.c +++ b/arch/arm/mach-omap1/pm.c | |||
@@ -706,6 +706,8 @@ static struct pm_ops omap_pm_ops ={ | |||
706 | 706 | ||
707 | static int __init omap_pm_init(void) | 707 | static int __init omap_pm_init(void) |
708 | { | 708 | { |
709 | int error; | ||
710 | |||
709 | printk("Power Management for TI OMAP.\n"); | 711 | printk("Power Management for TI OMAP.\n"); |
710 | 712 | ||
711 | /* | 713 | /* |
@@ -762,7 +764,9 @@ static int __init omap_pm_init(void) | |||
762 | omap_pm_init_proc(); | 764 | omap_pm_init_proc(); |
763 | #endif | 765 | #endif |
764 | 766 | ||
765 | subsys_create_file(&power_subsys, &sleep_while_idle_attr); | 767 | error = subsys_create_file(&power_subsys, &sleep_while_idle_attr); |
768 | if (error) | ||
769 | printk(KERN_ERR "subsys_create_file failed: %d\n", error); | ||
766 | 770 | ||
767 | if (cpu_is_omap16xx()) { | 771 | if (cpu_is_omap16xx()) { |
768 | /* configure LOW_PWR pin */ | 772 | /* configure LOW_PWR pin */ |