~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/sh/boards/mach-landisk/setup.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
static void landisk_power_off(void)
25
25
{
26
 
        __raw_writeb(0x01, PA_SHUTDOWN);
 
26
        __raw_writeb(0x01, PA_SHUTDOWN);
27
27
}
28
28
 
29
29
static struct resource cf_ide_resources[3];
85
85
 
86
86
static void __init landisk_setup(char **cmdline_p)
87
87
{
88
 
        /* LED ON */
 
88
        /* LED ON */
89
89
        __raw_writeb(__raw_readb(PA_LED) | 0x03, PA_LED);
90
90
 
91
91
        printk(KERN_INFO "I-O DATA DEVICE, INC. \"LANDISK Series\" support.\n");
97
97
 */
98
98
static struct sh_machine_vector mv_landisk __initmv = {
99
99
        .mv_name = "LANDISK",
100
 
        .mv_nr_irqs = 72,
101
100
        .mv_setup = landisk_setup,
102
101
        .mv_init_irq = init_landisk_IRQ,
103
102
};