pcf50633-backlight.c (2d8ad8719591fa803b0d589ed057fa46f49b7155) | pcf50633-backlight.c (bb7ca747f8d6243b3943c5b133048652020f4a50) |
---|---|
1/* 2 * Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de> 3 * PCF50633 backlight device driver 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License as published by the 7 * Free Software Foundation; either version 2 of the License, or (at your 8 * option) any later version. --- 98 unchanged lines hidden (view full) --- 107 struct pcf50633_platform_data *pcf50633_data = parent->platform_data; 108 struct pcf50633_bl_platform_data *pdata = pcf50633_data->backlight_data; 109 struct backlight_properties bl_props; 110 111 pcf_bl = kzalloc(sizeof(*pcf_bl), GFP_KERNEL); 112 if (!pcf_bl) 113 return -ENOMEM; 114 | 1/* 2 * Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de> 3 * PCF50633 backlight device driver 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License as published by the 7 * Free Software Foundation; either version 2 of the License, or (at your 8 * option) any later version. --- 98 unchanged lines hidden (view full) --- 107 struct pcf50633_platform_data *pcf50633_data = parent->platform_data; 108 struct pcf50633_bl_platform_data *pdata = pcf50633_data->backlight_data; 109 struct backlight_properties bl_props; 110 111 pcf_bl = kzalloc(sizeof(*pcf_bl), GFP_KERNEL); 112 if (!pcf_bl) 113 return -ENOMEM; 114 |
115 bl_props.type = BACKLIGHT_RAW; |
|
115 bl_props.max_brightness = 0x3f; 116 bl_props.power = FB_BLANK_UNBLANK; 117 118 if (pdata) { 119 bl_props.brightness = pdata->default_brightness; 120 pcf_bl->brightness_limit = pdata->default_brightness_limit; 121 } else { 122 bl_props.brightness = 0x3f; --- 68 unchanged lines hidden --- | 116 bl_props.max_brightness = 0x3f; 117 bl_props.power = FB_BLANK_UNBLANK; 118 119 if (pdata) { 120 bl_props.brightness = pdata->default_brightness; 121 pcf_bl->brightness_limit = pdata->default_brightness_limit; 122 } else { 123 bl_props.brightness = 0x3f; --- 68 unchanged lines hidden --- |