]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
i2c: Remove IC2_xxx enum
authorSimon Glass <sjg@chromium.org>
Sun, 11 Aug 2024 14:50:31 +0000 (08:50 -0600)
committerHeiko Schocher <hs@denx.de>
Tue, 13 Aug 2024 04:06:02 +0000 (06:06 +0200)
This is only used by devkit3250 which is being removed. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heiko Schocher <hs@denx.de>
drivers/usb/host/ohci-lpc32xx.c
include/i2c.h

index ed04cae7afed81cd7eba2172c354923d11c25c81..bf89bf8ab49e1196c038728bbdce12b1f3396e43 100644 (file)
@@ -94,10 +94,6 @@ static int isp1301_set_value(struct udevice *dev, int reg, u8 value)
 
 static void isp1301_configure(struct udevice *dev)
 {
-#if !CONFIG_IS_ENABLED(DM_I2C)
-       i2c_set_bus_num(I2C_2);
-#endif
-
        /*
         * LPC32XX only supports DAT_SE0 USB mode
         * This sequence is important
index 8d91b24b43bf28264c8767ffab1ce583a20154d5..1d3be3f67591a3bec1ab78dc4953529858ff1f65 100644 (file)
@@ -966,12 +966,6 @@ static inline void I2C_SET_BUS(unsigned int bus)
                i2c_set_bus_num(bus);
 }
 
-/* Multi I2C definitions */
-enum {
-       I2C_0, I2C_1, I2C_2, I2C_3, I2C_4, I2C_5, I2C_6, I2C_7,
-       I2C_8, I2C_9, I2C_10,
-};
-
 /**
  * Find the I2C bus number by given a FDT I2C node.
  *