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

« back to all changes in this revision

Viewing changes to arch/arm/mach-at91/board-eco920.c

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati
  • Date: 2011-12-06 15:56:07 UTC
  • Revision ID: package-import@ubuntu.com-20111206155607-pcf44kv5fmhk564f
Tags: 3.2.0-1401.1
[ Paolo Pisati ]

* Rebased on top of Ubuntu-3.2.0-3.8
* Tilt-tracking @ ef2487af4bb15bdd0689631774b5a5e3a59f74e2
* Delete debian.ti-omap4/control, it shoudln't be tracked
* Fix architecture spelling (s/armel/armhf/)
* [Config] Update configs following 3.2 import
* [Config] Fix compilation: disable CODA and ARCH_OMAP3
* [Config] Fix compilation: disable Ethernet Faraday
* Update series to precise

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
        /* Set cpu type: PQFP */
36
36
        at91rm9200_set_type(ARCH_REVISON_9200_PQFP);
37
37
 
38
 
        at91rm9200_initialize(18432000);
 
38
        at91_initialize(18432000);
39
39
 
40
40
        /* Setup the LEDs */
41
41
        at91_init_leds(AT91_PIN_PB0, AT91_PIN_PB1);
47
47
        at91_set_serial_console(0);
48
48
}
49
49
 
50
 
static void __init eco920_init_irq(void)
51
 
{
52
 
        at91rm9200_init_interrupts(NULL);
53
 
}
54
 
 
55
50
static struct at91_eth_data __initdata eco920_eth_data = {
56
51
        .phy_irq_pin    = AT91_PIN_PC2,
57
52
        .is_rmii        = 1,
135
130
MACHINE_START(ECO920, "eco920")
136
131
        /* Maintainer: Sascha Hauer */
137
132
        .timer          = &at91rm9200_timer,
138
 
        .map_io         = at91rm9200_map_io,
 
133
        .map_io         = at91_map_io,
139
134
        .init_early     = eco920_init_early,
140
 
        .init_irq       = eco920_init_irq,
 
135
        .init_irq       = at91_init_irq_default,
141
136
        .init_machine   = eco920_board_init,
142
137
MACHINE_END