diff options
author | Jean Delvare <khali@linux-fr.org> | 2012-10-05 22:23:53 +0200 |
---|---|---|
committer | Jean Delvare <khali@endymion.delvare> | 2012-10-05 22:23:53 +0200 |
commit | 7fe442a1a50f8b4fe49f685f21b08dd8f070f429 (patch) | |
tree | c17d35eba6bb97d0a6c9ed1e28456599a3313200 | |
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>
-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 = { /* ----- I2c and parallel port call-back functions and structures --------- */ -void i2c_parport_irq(void *data) +static void i2c_parport_irq(void *data) { struct i2c_par *adapter = data; struct i2c_client *ara = adapter->ara; |