Skip to content
Snippets Groups Projects
Commit fd03ea89 authored by Frans Meulenbroeks's avatar Frans Meulenbroeks Committed by Heiko Schocher
Browse files

i2c: made unused function i2c_mux_add_device static


and removed it from the .h file

Signed-off-by: default avatarFrans Meulenbroeks <fransmeulenbroeks@gmail.com>
parent 2c0dc990
No related branches found
No related tags found
No related merge requests found
...@@ -1357,7 +1357,7 @@ U_BOOT_CMD( ...@@ -1357,7 +1357,7 @@ U_BOOT_CMD(
); );
#if defined(CONFIG_I2C_MUX) #if defined(CONFIG_I2C_MUX)
int i2c_mux_add_device(I2C_MUX_DEVICE *dev) static int i2c_mux_add_device(I2C_MUX_DEVICE *dev)
{ {
I2C_MUX_DEVICE *devtmp = i2c_mux_devices; I2C_MUX_DEVICE *devtmp = i2c_mux_devices;
......
...@@ -127,8 +127,6 @@ typedef struct _mux_device { ...@@ -127,8 +127,6 @@ typedef struct _mux_device {
struct _mux_device *next; struct _mux_device *next;
} I2C_MUX_DEVICE; } I2C_MUX_DEVICE;
int i2c_mux_add_device(I2C_MUX_DEVICE *dev);
I2C_MUX_DEVICE *i2c_mux_search_device(int id); I2C_MUX_DEVICE *i2c_mux_search_device(int id);
I2C_MUX_DEVICE *i2c_mux_ident_muxstring (uchar *buf); I2C_MUX_DEVICE *i2c_mux_ident_muxstring (uchar *buf);
int i2x_mux_select_mux(int bus); int i2x_mux_select_mux(int bus);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment