diff options
author | Simon Glass | 2017-08-04 16:34:53 -0600 |
---|---|---|
committer | Tom Rini | 2017-08-11 15:42:00 -0400 |
commit | 1c27a4c9494b28bbe018762e534b2291081745df (patch) | |
tree | 3759a4eb910334d64ab636dec06b5931a49ec21a /include | |
parent | 00805d7ad83b410660fc17a06374874a81e39874 (diff) |
gpio: Drop sx151x driver
This driver is not used in U-Boot. Drop it and its associated CONFIG
options.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sx151x.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/include/sx151x.h b/include/sx151x.h deleted file mode 100644 index be42b0681bf..00000000000 --- a/include/sx151x.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * (C) Copyright 2013 - * Viktar Palstsiuk, Promwad, viktar.palstsiuk@promwad.com - * - * SPDX-License-Identifier: GPL-2.0+ - */ - -#ifndef __SX151X_H_ -#define __SX151X_H_ - -int sx151x_get_value(int chip, int gpio); -int sx151x_set_value(int chip, int gpio, int val); -int sx151x_direction_input(int chip, int gpio); -int sx151x_direction_output(int chip, int gpio); -int sx151x_reset(int chip); - -#endif /* __SX151X_H_ */ |