pwm-backlight: set default devname as rk28_bl, to make Android happy

This commit is contained in:
黄涛
2014-02-25 18:50:08 +08:00
parent 0f04961394
commit 0dce12aaaa

View File

@@ -301,6 +301,9 @@ static int pwm_backlight_probe(struct platform_device *pdev)
memset(&props, 0, sizeof(struct backlight_properties));
props.type = BACKLIGHT_RAW;
props.max_brightness = data->max_brightness;
#ifdef CONFIG_ARCH_ROCKCHIP
dev_set_name(&pdev->dev, "rk28_bl");
#endif
bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
&pwm_backlight_ops, &props);
if (IS_ERR(bl)) {