Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 60669
b: refs/heads/master
c: d3e0e02
h: refs/heads/master
i:
  60667: 3061c16
v: v3
  • Loading branch information
Domen Puncer authored and Kumar Gala committed Jul 10, 2007
1 parent 3e5798c commit fe79d83
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c03ac582feb1c80ddd5c73e6892d79686340e551
refs/heads/master: d3e0e02804a5f48432a87b839b469e66d1a84f1c
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/platforms/52xx/efika.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
int len;
Expand Down Expand Up @@ -144,7 +144,7 @@ void __init efika_pcisetup(void)
}

#else
void __init efika_pcisetup(void)
static void __init efika_pcisetup(void)
{}
#endif

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/platforms/52xx/lite5200.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
const char *model = NULL;
Expand Down
8 changes: 4 additions & 4 deletions trunk/arch/powerpc/platforms/52xx/mpc52xx_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@


/* these are defined in mpc52xx_sleep.S, and only used here */
extern void mpc52xx_deep_sleep(void *sram, void *sdram_regs,
struct mpc52xx_cdm *, struct mpc52xx_intr *);
extern void mpc52xx_deep_sleep(void __iomem *sram, void __iomem *sdram_regs,
struct mpc52xx_cdm __iomem *, struct mpc52xx_intr __iomem*);
extern void mpc52xx_ds_sram(void);
extern const long mpc52xx_ds_sram_size;
extern void mpc52xx_ds_cached(void);
Expand All @@ -21,7 +21,7 @@ static void __iomem *sdram;
static struct mpc52xx_cdm __iomem *cdm;
static struct mpc52xx_intr __iomem *intr;
static struct mpc52xx_gpio_wkup __iomem *gpiow;
static void *sram;
static void __iomem *sram;
static int sram_size;

struct mpc52xx_suspend mpc52xx_suspend;
Expand Down Expand Up @@ -100,7 +100,7 @@ int mpc52xx_pm_enter(suspend_state_t state)
u32 clk_enables;
u32 msr, hid0;
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;
char saved_0x500[mpc52xx_ds_cached_size];

Expand Down

0 comments on commit fe79d83

Please sign in to comment.