Loading arch/arm/mach-pxa/magician.c +1 −1 Original line number Diff line number Diff line Loading @@ -381,7 +381,7 @@ static int magician_backlight_init(struct device *dev) return ret; } static int magician_backlight_notify(int brightness) static int magician_backlight_notify(struct device *dev, int brightness) { gpio_set_value(EGPIO_MAGICIAN_BL_POWER, brightness); if (brightness >= 200) { Loading arch/arm/mach-pxa/palmld.c +1 −1 Original line number Diff line number Diff line Loading @@ -270,7 +270,7 @@ static int palmld_backlight_init(struct device *dev) return ret; } static int palmld_backlight_notify(int brightness) static int palmld_backlight_notify(struct device *dev, int brightness) { gpio_set_value(GPIO_NR_PALMLD_BL_POWER, brightness); gpio_set_value(GPIO_NR_PALMLD_LCD_POWER, brightness); Loading arch/arm/mach-pxa/palmt5.c +1 −1 Original line number Diff line number Diff line Loading @@ -209,7 +209,7 @@ static int palmt5_backlight_init(struct device *dev) return ret; } static int palmt5_backlight_notify(int brightness) static int palmt5_backlight_notify(struct device *dev, int brightness) { gpio_set_value(GPIO_NR_PALMT5_BL_POWER, brightness); gpio_set_value(GPIO_NR_PALMT5_LCD_POWER, brightness); Loading arch/arm/mach-pxa/palmtc.c +1 −1 Original line number Diff line number Diff line Loading @@ -185,7 +185,7 @@ static int palmtc_backlight_init(struct device *dev) return ret; } static int palmtc_backlight_notify(int brightness) static int palmtc_backlight_notify(struct device *dev, int brightness) { /* backlight is on when GPIO16 AF0 is high */ gpio_set_value(GPIO_NR_PALMTC_BL_POWER, brightness); Loading arch/arm/mach-pxa/palmte2.c +1 −1 Original line number Diff line number Diff line Loading @@ -181,7 +181,7 @@ static int palmte2_backlight_init(struct device *dev) return ret; } static int palmte2_backlight_notify(int brightness) static int palmte2_backlight_notify(struct device *dev, int brightness) { gpio_set_value(GPIO_NR_PALMTE2_BL_POWER, brightness); gpio_set_value(GPIO_NR_PALMTE2_LCD_POWER, brightness); Loading Loading
arch/arm/mach-pxa/magician.c +1 −1 Original line number Diff line number Diff line Loading @@ -381,7 +381,7 @@ static int magician_backlight_init(struct device *dev) return ret; } static int magician_backlight_notify(int brightness) static int magician_backlight_notify(struct device *dev, int brightness) { gpio_set_value(EGPIO_MAGICIAN_BL_POWER, brightness); if (brightness >= 200) { Loading
arch/arm/mach-pxa/palmld.c +1 −1 Original line number Diff line number Diff line Loading @@ -270,7 +270,7 @@ static int palmld_backlight_init(struct device *dev) return ret; } static int palmld_backlight_notify(int brightness) static int palmld_backlight_notify(struct device *dev, int brightness) { gpio_set_value(GPIO_NR_PALMLD_BL_POWER, brightness); gpio_set_value(GPIO_NR_PALMLD_LCD_POWER, brightness); Loading
arch/arm/mach-pxa/palmt5.c +1 −1 Original line number Diff line number Diff line Loading @@ -209,7 +209,7 @@ static int palmt5_backlight_init(struct device *dev) return ret; } static int palmt5_backlight_notify(int brightness) static int palmt5_backlight_notify(struct device *dev, int brightness) { gpio_set_value(GPIO_NR_PALMT5_BL_POWER, brightness); gpio_set_value(GPIO_NR_PALMT5_LCD_POWER, brightness); Loading
arch/arm/mach-pxa/palmtc.c +1 −1 Original line number Diff line number Diff line Loading @@ -185,7 +185,7 @@ static int palmtc_backlight_init(struct device *dev) return ret; } static int palmtc_backlight_notify(int brightness) static int palmtc_backlight_notify(struct device *dev, int brightness) { /* backlight is on when GPIO16 AF0 is high */ gpio_set_value(GPIO_NR_PALMTC_BL_POWER, brightness); Loading
arch/arm/mach-pxa/palmte2.c +1 −1 Original line number Diff line number Diff line Loading @@ -181,7 +181,7 @@ static int palmte2_backlight_init(struct device *dev) return ret; } static int palmte2_backlight_notify(int brightness) static int palmte2_backlight_notify(struct device *dev, int brightness) { gpio_set_value(GPIO_NR_PALMTE2_BL_POWER, brightness); gpio_set_value(GPIO_NR_PALMTE2_LCD_POWER, brightness); Loading