|
@@ -2005,15 +2005,15 @@ EXPORT_SYMBOL_GPL(gpiod_is_active_low);
|
|
|
* that the GPIO was actually requested.
|
|
|
*/
|
|
|
|
|
|
-static int _gpiod_get_raw_value(const struct gpio_desc *desc)
|
|
|
+static bool _gpiod_get_raw_value(const struct gpio_desc *desc)
|
|
|
{
|
|
|
struct gpio_chip *chip;
|
|
|
- int value;
|
|
|
+ bool value;
|
|
|
int offset;
|
|
|
|
|
|
chip = desc->chip;
|
|
|
offset = gpio_chip_hwgpio(desc);
|
|
|
- value = chip->get ? chip->get(chip, offset) : 0;
|
|
|
+ value = chip->get ? chip->get(chip, offset) : false;
|
|
|
trace_gpio_value(desc_to_gpio(desc), 1, value);
|
|
|
return value;
|
|
|
}
|
|
@@ -2069,7 +2069,7 @@ EXPORT_SYMBOL_GPL(gpiod_get_value);
|
|
|
* @desc: gpio descriptor whose state need to be set.
|
|
|
* @value: Non-zero for setting it HIGH otherise it will set to LOW.
|
|
|
*/
|
|
|
-static void _gpio_set_open_drain_value(struct gpio_desc *desc, int value)
|
|
|
+static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
|
|
|
{
|
|
|
int err = 0;
|
|
|
struct gpio_chip *chip = desc->chip;
|
|
@@ -2096,7 +2096,7 @@ static void _gpio_set_open_drain_value(struct gpio_desc *desc, int value)
|
|
|
* @desc: gpio descriptor whose state need to be set.
|
|
|
* @value: Non-zero for setting it HIGH otherise it will set to LOW.
|
|
|
*/
|
|
|
-static void _gpio_set_open_source_value(struct gpio_desc *desc, int value)
|
|
|
+static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
|
|
|
{
|
|
|
int err = 0;
|
|
|
struct gpio_chip *chip = desc->chip;
|
|
@@ -2118,7 +2118,7 @@ static void _gpio_set_open_source_value(struct gpio_desc *desc, int value)
|
|
|
__func__, err);
|
|
|
}
|
|
|
|
|
|
-static void _gpiod_set_raw_value(struct gpio_desc *desc, int value)
|
|
|
+static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
|
|
|
{
|
|
|
struct gpio_chip *chip;
|
|
|
|