diff options
| author | Simon Glass <[email protected]> | 2024-08-11 08:50:43 -0600 |
|---|---|---|
| committer | Heiko Schocher <[email protected]> | 2024-08-13 06:16:01 +0200 |
| commit | 4b8d78cb79df40b93134938c35cb86566d849cb4 (patch) | |
| tree | 3aef341496f76796ec5779219e90f60afce408b0 /include | |
| parent | 986ef77061df0627d87fdc6162649cfab3c15e3f (diff) | |
i2c: Remove I2C_GET_BUS()
This is very old, predating even the legacy I2C support, so drop it.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/i2c.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/i2c.h b/include/i2c.h index 1d1430b74a6..b6727bb2a73 100644 --- a/include/i2c.h +++ b/include/i2c.h @@ -947,13 +947,6 @@ unsigned int i2c_get_bus_speed(void); # define I2C_MULTI_BUS 0 #endif -/* NOTE: These two functions MUST be always_inline to avoid code growth! */ -static inline unsigned int I2C_GET_BUS(void) __attribute__((always_inline)); -static inline unsigned int I2C_GET_BUS(void) -{ - return I2C_MULTI_BUS ? i2c_get_bus_num() : 0; -} - /** * Find the I2C bus number by given a FDT I2C node. * |
