diff options
| author | Sanjeev Premi <premi@ti.com> | 2008-11-04 16:35:06 -0500 |
|---|---|---|
| committer | Tony Lindgren <tony@atomide.com> | 2008-11-04 16:35:06 -0500 |
| commit | 85d7a070264272ceffec0c7ce0e9af1e37c62b6e (patch) | |
| tree | d88652b259e60889ef70dd856476242b14d56b59 | |
| parent | 45beca08dd8b6d6a65c5ffd730af2eac7a2c7a03 (diff) | |
ARM: OMAP: Fix compiler warnings in gpmc.c
Fix these compiler warnings:
gpmc.c: In function 'gpmc_init':
gpmc.c:432: warning: 'return' with a value, in function returning void
gpmc.c:439: warning: 'return' with a value, in function returning void
Signed-off-by: Sanjeev Premi <premi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
| -rw-r--r-- | arch/arm/mach-omap2/gpmc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index 763bdbeaf681..2249049c1d5a 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2/gpmc.c | |||
| @@ -429,18 +429,16 @@ void __init gpmc_init(void) | |||
| 429 | gpmc_l3_clk = clk_get(NULL, ck); | 429 | gpmc_l3_clk = clk_get(NULL, ck); |
| 430 | if (IS_ERR(gpmc_l3_clk)) { | 430 | if (IS_ERR(gpmc_l3_clk)) { |
| 431 | printk(KERN_ERR "Could not get GPMC clock %s\n", ck); | 431 | printk(KERN_ERR "Could not get GPMC clock %s\n", ck); |
| 432 | return -ENODEV; | 432 | BUG(); |
| 433 | } | 433 | } |
| 434 | 434 | ||
| 435 | gpmc_base = ioremap(l, SZ_4K); | 435 | gpmc_base = ioremap(l, SZ_4K); |
| 436 | if (!gpmc_base) { | 436 | if (!gpmc_base) { |
| 437 | clk_put(gpmc_l3_clk); | 437 | clk_put(gpmc_l3_clk); |
| 438 | printk(KERN_ERR "Could not get GPMC register memory\n"); | 438 | printk(KERN_ERR "Could not get GPMC register memory\n"); |
| 439 | return -ENOMEM; | 439 | BUG(); |
| 440 | } | 440 | } |
| 441 | 441 | ||
| 442 | BUG_ON(IS_ERR(gpmc_l3_clk)); | ||
| 443 | |||
| 444 | l = gpmc_read_reg(GPMC_REVISION); | 442 | l = gpmc_read_reg(GPMC_REVISION); |
| 445 | printk(KERN_INFO "GPMC revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f); | 443 | printk(KERN_INFO "GPMC revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f); |
| 446 | /* Set smart idle mode and automatic L3 clock gating */ | 444 | /* Set smart idle mode and automatic L3 clock gating */ |
