ARM: ep93xx: soc: drop defines
authorNikita Shubin <nikita.shubin@maquefel.me>
Wed, 19 Apr 2023 14:15:46 +0000 (17:15 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Wed, 31 May 2023 10:54:25 +0000 (13:54 +0300)
Remove unnecessary defines, as we dropped board files.

Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
include/linux/platform_data/eth-ep93xx.h [deleted file]
include/linux/platform_data/keypad-ep93xx.h [deleted file]
include/linux/soc/cirrus/ep93xx.h

diff --git a/include/linux/platform_data/eth-ep93xx.h b/include/linux/platform_data/eth-ep93xx.h
deleted file mode 100644 (file)
index 8eef637..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _LINUX_PLATFORM_DATA_ETH_EP93XX
-#define _LINUX_PLATFORM_DATA_ETH_EP93XX
-
-struct ep93xx_eth_data {
-       unsigned char   dev_addr[6];
-       unsigned char   phy_id;
-};
-
-#endif
diff --git a/include/linux/platform_data/keypad-ep93xx.h b/include/linux/platform_data/keypad-ep93xx.h
deleted file mode 100644 (file)
index 3054fce..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef __KEYPAD_EP93XX_H
-#define __KEYPAD_EP93XX_H
-
-struct matrix_keymap_data;
-
-/* flags for the ep93xx_keypad driver */
-#define EP93XX_KEYPAD_DISABLE_3_KEY    (1<<0)  /* disable 3-key reset */
-#define EP93XX_KEYPAD_DIAG_MODE                (1<<1)  /* diagnostic mode */
-#define EP93XX_KEYPAD_BACK_DRIVE       (1<<2)  /* back driving mode */
-#define EP93XX_KEYPAD_TEST_MODE                (1<<3)  /* scan only column 0 */
-#define EP93XX_KEYPAD_AUTOREPEAT       (1<<4)  /* enable key autorepeat */
-
-/**
- * struct ep93xx_keypad_platform_data - platform specific device structure
- * @keymap_data:       pointer to &matrix_keymap_data
- * @debounce:          debounce start count; terminal count is 0xff
- * @prescale:          row/column counter pre-scaler load value
- * @flags:             see above
- */
-struct ep93xx_keypad_platform_data {
-       struct matrix_keymap_data *keymap_data;
-       unsigned int    debounce;
-       unsigned int    prescale;
-       unsigned int    flags;
-       unsigned int    clk_rate;
-};
-
-#define EP93XX_MATRIX_ROWS             (8)
-#define EP93XX_MATRIX_COLS             (8)
-
-#endif /* __KEYPAD_EP93XX_H */
index 37c0e17a45c0578e7a7786e790ecf5914e7f0757..2acce55692a4c63de4f1f7e700da0185aba41b53 100644 (file)
@@ -2,44 +2,34 @@
 #ifndef _SOC_EP93XX_H
 #define _SOC_EP93XX_H
 
-struct platform_device;
-
 #define EP93XX_CHIP_REV_D0     3
 #define EP93XX_CHIP_REV_D1     4
 #define EP93XX_CHIP_REV_E0     5
 #define EP93XX_CHIP_REV_E1     6
 #define EP93XX_CHIP_REV_E2     7
 
-#if defined(CONFIG_EP93XX_SOC_COMMON)
-int ep93xx_pwm_acquire_gpio(struct platform_device *pdev);
-void ep93xx_pwm_release_gpio(struct platform_device *pdev);
-int ep93xx_ide_acquire_gpio(struct platform_device *pdev);
-void ep93xx_ide_release_gpio(struct platform_device *pdev);
-int ep93xx_keypad_acquire_gpio(struct platform_device *pdev);
-void ep93xx_keypad_release_gpio(struct platform_device *pdev);
-int ep93xx_i2s_acquire(void);
-void ep93xx_i2s_release(void);
-#else
-static inline int ep93xx_pwm_acquire_gpio(struct platform_device *pdev) { return 0; }
-static inline void ep93xx_pwm_release_gpio(struct platform_device *pdev) {}
-static inline int ep93xx_ide_acquire_gpio(struct platform_device *pdev) { return 0; }
-static inline void ep93xx_ide_release_gpio(struct platform_device *pdev) {}
-static inline int ep93xx_keypad_acquire_gpio(struct platform_device *pdev) { return 0; }
-static inline void ep93xx_keypad_release_gpio(struct platform_device *pdev) {}
-static inline int ep93xx_i2s_acquire(void) { return 0; }
-static inline void ep93xx_i2s_release(void) {}
-#endif
-
 #if defined(CONFIG_ARCH_EP93XX)
 unsigned int ep93xx_chip_revision(void);
-#if defined(CONFIG_EP93XX_SOC)
 void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);
 void ep93xx_syscon_swlocked_write(unsigned int val, unsigned int reg);
 void ep93xx_swlocked_update_bits(unsigned int reg,
                                 unsigned int mask, unsigned int val);
-#endif
 #else
 static inline unsigned int ep93xx_chip_revision(void) { return 0; }
+static inline void ep93xx_devcfg_set_clear(unsigned int set_bits,
+                               unsigned int clear_bits)
+{
+       return 0;
+}
+void ep93xx_syscon_swlocked_write(unsigned int val, unsigned int reg)
+{
+       return 0;
+}
+void ep93xx_swlocked_update_bits(unsigned int reg,
+                               unsigned int mask, unsigned int val)
+{
+       return 0;
+}
 #endif
 
 #endif