|
@@ -236,46 +236,6 @@ void tinydrm_xrgb8888_to_gray8(u8 *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
|
}
|
|
|
EXPORT_SYMBOL(tinydrm_xrgb8888_to_gray8);
|
|
|
|
|
|
-/**
|
|
|
- * tinydrm_of_find_backlight - Find backlight device in device-tree
|
|
|
- * @dev: Device
|
|
|
- *
|
|
|
- * This function looks for a DT node pointed to by a property named 'backlight'
|
|
|
- * and uses of_find_backlight_by_node() to get the backlight device.
|
|
|
- * Additionally if the brightness property is zero, it is set to
|
|
|
- * max_brightness.
|
|
|
- *
|
|
|
- * Returns:
|
|
|
- * NULL if there's no backlight property.
|
|
|
- * Error pointer -EPROBE_DEFER if the DT node is found, but no backlight device
|
|
|
- * is found.
|
|
|
- * If the backlight device is found, a pointer to the structure is returned.
|
|
|
- */
|
|
|
-struct backlight_device *tinydrm_of_find_backlight(struct device *dev)
|
|
|
-{
|
|
|
- struct backlight_device *backlight;
|
|
|
- struct device_node *np;
|
|
|
-
|
|
|
- np = of_parse_phandle(dev->of_node, "backlight", 0);
|
|
|
- if (!np)
|
|
|
- return NULL;
|
|
|
-
|
|
|
- backlight = of_find_backlight_by_node(np);
|
|
|
- of_node_put(np);
|
|
|
-
|
|
|
- if (!backlight)
|
|
|
- return ERR_PTR(-EPROBE_DEFER);
|
|
|
-
|
|
|
- if (!backlight->props.brightness) {
|
|
|
- backlight->props.brightness = backlight->props.max_brightness;
|
|
|
- DRM_DEBUG_KMS("Backlight brightness set to %d\n",
|
|
|
- backlight->props.brightness);
|
|
|
- }
|
|
|
-
|
|
|
- return backlight;
|
|
|
-}
|
|
|
-EXPORT_SYMBOL(tinydrm_of_find_backlight);
|
|
|
-
|
|
|
#if IS_ENABLED(CONFIG_SPI)
|
|
|
|
|
|
/**
|