Assign default roles to two of Beagle's programmable LEDs:
 - usr0 has a heartbeat to show basic activity
 - usr1 shows MMC activity
A third led is controlled by the TWL4030 LED_B signal, but the
TWL driver doesn't yet support leds...
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Tony Lindgren <tony@atomide.com>
        .ctrl_name      = "internal",
 };
 
-struct gpio_led gpio_leds[] = {
+static struct gpio_led gpio_leds[] = {
        {
                .name                   = "beagleboard::usr0",
-               .default_trigger        = "none",
+               .default_trigger        = "heartbeat",
                .gpio                   = 150,
        },
        {
                .name                   = "beagleboard::usr1",
-               .default_trigger        = "none",
+               .default_trigger        = "mmc0",
                .gpio                   = 149,
        },
 };