1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

fix broadcom-diag on linux 2.6.28 (#4633)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14618 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2009-02-22 17:12:36 +00:00
parent 5bbc97f230
commit c8e962e8f9
2 changed files with 5 additions and 7 deletions

View File

@@ -919,14 +919,14 @@ static void register_buttons(struct button_t *b)
gpio_control(platform.button_mask, 0);
platform.button_polarity = gpio_in() & platform.button_mask;
gpio_intpolarity(platform.button_mask, platform.button_polarity);
gpio_intmask(platform.button_mask, platform.button_mask);
gpio_setintmask(platform.button_mask, platform.button_mask);
gpio_set_irqenable(1, button_handler);
}
static void unregister_buttons(struct button_t *b)
{
gpio_intmask(platform.button_mask, 0);
gpio_setintmask(platform.button_mask, 0);
gpio_set_irqenable(0, button_handler);
}
@@ -1101,7 +1101,7 @@ static void register_leds(struct led_t *l)
gpio_outen(mask, oe_mask);
gpio_control(mask, 0);
gpio_out(mask, val);
gpio_intmask(mask, 0);
gpio_setintmask(mask, 0);
}
static void unregister_leds(struct led_t *l)