summaryrefslogtreecommitdiff
path: root/include/linux/backlight.h
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2020-07-19 10:07:42 +0200
committerLee Jones <lee.jones@linaro.org>2020-07-20 10:27:09 +0100
commit0f6a3256fd810eeca9c56cccafee46359d995138 (patch)
treefd9686e6761bf89daeb84d173eed0d5305f42df4 /include/linux/backlight.h
parent51d53e5b06b8e75d02a17bfe678e7be7554a2322 (diff)
backlight: backlight: Drop backlight_put()
There are no external users of backlight_put(). Drop it and open code the two users in backlight.c. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/backlight.h')
-rw-r--r--include/linux/backlight.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/backlight.h b/include/linux/backlight.h
index 26e89a8033f5..64f91324c911 100644
--- a/include/linux/backlight.h
+++ b/include/linux/backlight.h
@@ -389,16 +389,6 @@ static inline int backlight_disable(struct backlight_device *bd)
}
/**
- * backlight_put - Drop backlight reference
- * @bd: the backlight device to put
- */
-static inline void backlight_put(struct backlight_device *bd)
-{
- if (bd)
- put_device(&bd->dev);
-}
-
-/**
* backlight_is_blank - Return true if display is expected to be blank
* @bd: the backlight device
*