Skip to content

Commit

Permalink
sparc: fix trivial style issues in kernel/pmc.c
Browse files Browse the repository at this point in the history
o drop trailing whitespaces
o align a fix things properly

Signed-off-by: Sam Ravnborg <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
sravnborg authored and davem330 committed Dec 8, 2008
1 parent 39f6649 commit 85bfbf4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions arch/sparc/kernel/pmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,32 +24,32 @@
*/

#define PMC_OBPNAME "SUNW,pmc"
#define PMC_DEVNAME "pmc"
#define PMC_DEVNAME "pmc"

#define PMC_IDLE_REG 0x00
#define PMC_IDLE_ON 0x01
#define PMC_IDLE_ON 0x01

static u8 __iomem *regs;

#define pmc_readb(offs) (sbus_readb(regs+offs))
#define pmc_writeb(val, offs) (sbus_writeb(val, regs+offs))
#define pmc_writeb(val, offs) (sbus_writeb(val, regs+offs))

/*
/*
* CPU idle callback function
* See .../arch/sparc/kernel/process.c
*/
static void pmc_swift_idle(void)
{
#ifdef PMC_DEBUG_LED
set_auxio(0x00, AUXIO_LED);
set_auxio(0x00, AUXIO_LED);
#endif

pmc_writeb(pmc_readb(PMC_IDLE_REG) | PMC_IDLE_ON, PMC_IDLE_REG);

#ifdef PMC_DEBUG_LED
set_auxio(AUXIO_LED, 0x00);
set_auxio(AUXIO_LED, 0x00);
#endif
}
}

static int __devinit pmc_probe(struct of_device *op,
const struct of_device_id *match)
Expand All @@ -63,7 +63,7 @@ static int __devinit pmc_probe(struct of_device *op,

#ifndef PMC_NO_IDLE
/* Assign power management IDLE handler */
pm_idle = pmc_swift_idle;
pm_idle = pmc_swift_idle;
#endif

printk(KERN_INFO "%s: power management initialized\n", PMC_DEVNAME);
Expand Down

0 comments on commit 85bfbf4

Please sign in to comment.