lantiq: cleanup led handling functions

Use a more generic name for the lantiq_get_dt_led_chosen function.

Drop the lantiq_is_dt_led_chosen function. The lantiq_get_dt_led
function can be used to achieve the same.

Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
Mathias Kresin
2016-10-04 20:30:34 +02:00
parent dbb13a81b9
commit 8b639410d1
3 changed files with 22 additions and 19 deletions

View File

@@ -28,18 +28,14 @@ lantiq_board_name() {
echo "$name"
}
lantiq_is_dt_led_chosen() {
[ -f "/sys/firmware/devicetree/base/chosen/leds/$1" ] && echo "true"
}
lantiq_get_dt_led_chosen() {
lantiq_get_dt_led() {
local label
local nodepath
local ledpath
local basepath="/sys/firmware/devicetree/base"
local chosenpath="$basepath/chosen/leds/$1"
local nodepath="$basepath/chosen/leds/$1"
[ -f "$chosenpath" ] && nodepath=$(cat "$chosenpath")
[ -n "$nodepath" ] && label=$(cat "$basepath$nodepath/label")
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
[ -n "$ledpath" ] && label=$(cat "$basepath$ledpath/label")
echo "$label"
}