diff options
| author | Axel Lin <[email protected]> | 2021-05-18 19:48:43 +0800 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2021-05-18 14:04:33 +0100 |
| commit | 3799fa23afa4cac347739d5290df44a474a82a82 (patch) | |
| tree | 0358c6926be5d900c8d7c1ac75e93314080d19f3 | |
| parent | 9b8756d6ee1b2486e5b2da385de19a23227ada1a (diff) | |
regulator: bd71815: Fix missing include files
Include linux/of.h and linux/gpio/consumer.h to fix below errors:
error: implicit declaration of function ‘of_match_ptr’
error: implicit declaration of function ‘devm_gpiod_get_from_of_node’
Signed-off-by: Axel Lin <[email protected]>
Reviewed-by: Matti Vaittinen <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | drivers/regulator/bd71815-regulator.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/bd71815-regulator.c b/drivers/regulator/bd71815-regulator.c index a4e8d5e36b40..a079efa80092 100644 --- a/drivers/regulator/bd71815-regulator.c +++ b/drivers/regulator/bd71815-regulator.c @@ -13,6 +13,8 @@ #include <linux/init.h> #include <linux/err.h> #include <linux/platform_device.h> +#include <linux/of.h> +#include <linux/gpio/consumer.h> #include <linux/regulator/driver.h> #include <linux/delay.h> #include <linux/slab.h> |