diff options
author | Jean Delvare <khali@linux-fr.org> | 2012-10-05 16:23:53 -0400 |
---|---|---|
committer | Jean Delvare <khali@endymion.delvare> | 2012-10-05 16:23:53 -0400 |
commit | 7fe442a1a50f8b4fe49f685f21b08dd8f070f429 (patch) | |
tree | c17d35eba6bb97d0a6c9ed1e28456599a3313200 /drivers/i2c | |
parent | bccd780f867c82571181f6ca03e243beba697607 (diff) |
i2c-parport: i2c_parport_irq can be static
i2c_parport_irq is only called internally so it can be static.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-parport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-parport.c b/drivers/i2c/busses/i2c-parport.c index 24565687ac9b..81d887869620 100644 --- a/drivers/i2c/busses/i2c-parport.c +++ b/drivers/i2c/busses/i2c-parport.c | |||
@@ -151,7 +151,7 @@ static const struct i2c_algo_bit_data parport_algo_data = { | |||
151 | 151 | ||
152 | /* ----- I2c and parallel port call-back functions and structures --------- */ | 152 | /* ----- I2c and parallel port call-back functions and structures --------- */ |
153 | 153 | ||
154 | void i2c_parport_irq(void *data) | 154 | static void i2c_parport_irq(void *data) |
155 | { | 155 | { |
156 | struct i2c_par *adapter = data; | 156 | struct i2c_par *adapter = data; |
157 | struct i2c_client *ara = adapter->ara; | 157 | struct i2c_client *ara = adapter->ara; |