fixup! ARM: ep93xx: soc: drop defines
authorNikita Shubin <nikita.shubin@maquefel.me>
Fri, 28 Apr 2023 18:08:11 +0000 (21:08 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Tue, 2 May 2023 07:58:56 +0000 (10:58 +0300)
include/linux/soc/cirrus/ep93xx.h

index 77290f99f1145a00aa76d296679f026dd7598c08..393ec0570010e1fb666694be6c54d1b5e6e35188 100644 (file)
 
 #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 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