OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LEDST_ON
(Results
1 - 6
of
6
) sorted by null
/external/u-boot/include/
led.h
30
LEDST_ON
= 1,
/external/u-boot/drivers/led/
led_gpio.c
28
case
LEDST_ON
:
54
return ret ?
LEDST_ON
: LEDST_OFF;
75
gpio_led_set_state(dev,
LEDST_ON
);
led_bcm6328.c
73
state = (priv->active_low ?
LEDST_ON
: LEDST_OFF);
76
state = (priv->active_low ? LEDST_OFF :
LEDST_ON
);
97
case
LEDST_ON
:
102
return bcm6328_led_set_state(dev,
LEDST_ON
);
led_bcm6358.c
72
state = (priv->active_low ?
LEDST_ON
: LEDST_OFF);
75
state = (priv->active_low ? LEDST_OFF :
LEDST_ON
);
91
case
LEDST_ON
:
96
return bcm6358_led_set_state(dev,
LEDST_ON
);
/external/u-boot/test/dm/
led.c
37
ut_asserteq(
LEDST_ON
, led_get_state(dev));
59
ut_assertok(led_set_state(dev,
LEDST_ON
));
61
ut_asserteq(
LEDST_ON
, led_get_state(dev));
86
ut_asserteq(
LEDST_ON
, led_get_state(dev));
/external/u-boot/cmd/
led.c
17
[
LEDST_ON
] = "on",
106
case
LEDST_ON
:
Completed in 971 milliseconds