Commit d3e0e028 authored by Domen Puncer's avatar Domen Puncer Committed by Kumar Gala

[POWERPC] 52xx: sparse fixes

sparse caught these static functions / __iomem annotations
under arch/powerpc/platform/52xx/
Signed-off-by: default avatarDomen Puncer <domen.puncer@telargo.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent c03ac582
...@@ -83,7 +83,7 @@ static struct pci_ops rtas_pci_ops = { ...@@ -83,7 +83,7 @@ static struct pci_ops rtas_pci_ops = {
}; };
void __init efika_pcisetup(void) static void __init efika_pcisetup(void)
{ {
const int *bus_range; const int *bus_range;
int len; int len;
...@@ -144,7 +144,7 @@ void __init efika_pcisetup(void) ...@@ -144,7 +144,7 @@ void __init efika_pcisetup(void)
} }
#else #else
void __init efika_pcisetup(void) static void __init efika_pcisetup(void)
{} {}
#endif #endif
......
...@@ -156,7 +156,7 @@ static void __init lite5200_setup_arch(void) ...@@ -156,7 +156,7 @@ static void __init lite5200_setup_arch(void)
} }
void lite5200_show_cpuinfo(struct seq_file *m) static void lite5200_show_cpuinfo(struct seq_file *m)
{ {
struct device_node* np = of_find_all_nodes(NULL); struct device_node* np = of_find_all_nodes(NULL);
const char *model = NULL; const char *model = NULL;
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
/* these are defined in mpc52xx_sleep.S, and only used here */ /* these are defined in mpc52xx_sleep.S, and only used here */
extern void mpc52xx_deep_sleep(void *sram, void *sdram_regs, extern void mpc52xx_deep_sleep(void __iomem *sram, void __iomem *sdram_regs,
struct mpc52xx_cdm *, struct mpc52xx_intr *); struct mpc52xx_cdm __iomem *, struct mpc52xx_intr __iomem*);
extern void mpc52xx_ds_sram(void); extern void mpc52xx_ds_sram(void);
extern const long mpc52xx_ds_sram_size; extern const long mpc52xx_ds_sram_size;
extern void mpc52xx_ds_cached(void); extern void mpc52xx_ds_cached(void);
...@@ -21,7 +21,7 @@ static void __iomem *sdram; ...@@ -21,7 +21,7 @@ static void __iomem *sdram;
static struct mpc52xx_cdm __iomem *cdm; static struct mpc52xx_cdm __iomem *cdm;
static struct mpc52xx_intr __iomem *intr; static struct mpc52xx_intr __iomem *intr;
static struct mpc52xx_gpio_wkup __iomem *gpiow; static struct mpc52xx_gpio_wkup __iomem *gpiow;
static void *sram; static void __iomem *sram;
static int sram_size; static int sram_size;
struct mpc52xx_suspend mpc52xx_suspend; struct mpc52xx_suspend mpc52xx_suspend;
...@@ -100,7 +100,7 @@ int mpc52xx_pm_enter(suspend_state_t state) ...@@ -100,7 +100,7 @@ int mpc52xx_pm_enter(suspend_state_t state)
u32 clk_enables; u32 clk_enables;
u32 msr, hid0; u32 msr, hid0;
u32 intr_main_mask; u32 intr_main_mask;
void __iomem * irq_0x500 = (void *)CONFIG_KERNEL_START + 0x500; void __iomem * irq_0x500 = (void __iomem *)CONFIG_KERNEL_START + 0x500;
unsigned long irq_0x500_stop = (unsigned long)irq_0x500 + mpc52xx_ds_cached_size; unsigned long irq_0x500_stop = (unsigned long)irq_0x500 + mpc52xx_ds_cached_size;
char saved_0x500[mpc52xx_ds_cached_size]; char saved_0x500[mpc52xx_ds_cached_size];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment