aboutsummaryrefslogtreecommitdiff
path: root/include/pca9698.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-01 13:19:56 -0700
committerTom Rini <trini@konsulko.com>2023-02-07 14:33:49 -0500
commit408296aad9d662cfb6d3248fc532ce16477fc713 (patch)
treec2e5d98699ca150a0a186e47835b6851159582b0 /include/pca9698.h
parentdc1756a4a97f61521f352c4d308185b7d2d16c42 (diff)
downloadu-boot-408296aad9d662cfb6d3248fc532ce16477fc713.zip
u-boot-408296aad9d662cfb6d3248fc532ce16477fc713.tar.gz
u-boot-408296aad9d662cfb6d3248fc532ce16477fc713.tar.bz2
gpio: Drop unused pca9698 driver
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/pca9698.h')
-rw-r--r--include/pca9698.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/pca9698.h b/include/pca9698.h
deleted file mode 100644
index 48a5f75..0000000
--- a/include/pca9698.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0+ */
-/*
- * (C) Copyright 2011
- * Dirk Eibach, Guntermann & Drunck GmbH, dirk.eibach@gdsys.cc
- */
-
-#ifndef __PCA9698_H_
-#define __PCA9698_H_
-
-int pca9698_request(unsigned gpio, const char *label);
-void pca9698_free(unsigned gpio);
-int pca9698_direction_input(u8 addr, unsigned gpio);
-int pca9698_direction_output(u8 addr, unsigned gpio, int value);
-int pca9698_get_value(u8 addr, unsigned gpio);
-int pca9698_set_value(u8 addr, unsigned gpio, int value);
-
-#endif /* __PCA9698_H_ */