pm.c (a8c4c20dfa8b28a3c99e33c639d9c2ea5657741e) pm.c (52e405eaa9806968e88b35d65e57acad954a5ab5)
1//kernel/linux-omap-fsample/arch/arm/mach-omap1/pm.c#3 - integrate change 4545 (text)
2/*
3 * linux/arch/arm/mach-omap1/pm.c
4 *
5 * OMAP Power Management Routines
6 *
7 * Original code for the SA11x0:
8 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>

--- 676 unchanged lines hidden (view full) ---

685static irqreturn_t omap_wakeup_interrupt(int irq, void * dev,
686 struct pt_regs * regs)
687{
688 return IRQ_HANDLED;
689}
690
691static struct irqaction omap_wakeup_irq = {
692 .name = "peripheral wakeup",
1//kernel/linux-omap-fsample/arch/arm/mach-omap1/pm.c#3 - integrate change 4545 (text)
2/*
3 * linux/arch/arm/mach-omap1/pm.c
4 *
5 * OMAP Power Management Routines
6 *
7 * Original code for the SA11x0:
8 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>

--- 676 unchanged lines hidden (view full) ---

685static irqreturn_t omap_wakeup_interrupt(int irq, void * dev,
686 struct pt_regs * regs)
687{
688 return IRQ_HANDLED;
689}
690
691static struct irqaction omap_wakeup_irq = {
692 .name = "peripheral wakeup",
693 .flags = SA_INTERRUPT,
693 .flags = IRQF_DISABLED,
694 .handler = omap_wakeup_interrupt
695};
696
697
698
699static struct pm_ops omap_pm_ops ={
700 .pm_disk_mode = 0,
701 .prepare = omap_pm_prepare,

--- 72 unchanged lines hidden ---
694 .handler = omap_wakeup_interrupt
695};
696
697
698
699static struct pm_ops omap_pm_ops ={
700 .pm_disk_mode = 0,
701 .prepare = omap_pm_prepare,

--- 72 unchanged lines hidden ---