diff options
author | Jean Delvare <khali@linux-fr.org> | 2007-05-01 23:26:32 +0200 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2007-05-01 23:26:32 +0200 |
commit | a97f1ed090fc01a5876a7caf2cbdf93470436201 (patch) | |
tree | b61f834963b0f750b13534804b1c2b06b6cec65f /drivers | |
parent | ce9e0794c23fb1d0222cb10009a198b427dcf6ad (diff) | |
download | linux-3.10-a97f1ed090fc01a5876a7caf2cbdf93470436201.tar.gz linux-3.10-a97f1ed090fc01a5876a7caf2cbdf93470436201.tar.bz2 linux-3.10-a97f1ed090fc01a5876a7caf2cbdf93470436201.zip |
i2c: Move i2c-isa-only exported symbol declarations
Move the declaration of i2c-isa-only exported symbols to i2c-isa
itself, that's the best way to ensure nobody will attempt to use them.
Hopefully we'll get rid of the exports themselves soon anyway.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/i2c/busses/i2c-isa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-isa.c b/drivers/i2c/busses/i2c-isa.c index 819e8991f27..b0e1370075d 100644 --- a/drivers/i2c/busses/i2c-isa.c +++ b/drivers/i2c/busses/i2c-isa.c @@ -41,6 +41,10 @@ #include <linux/platform_device.h> #include <linux/completion.h> +/* Exported by i2c-core for i2c-isa only */ +extern void i2c_adapter_dev_release(struct device *dev); +extern struct class i2c_adapter_class; + static u32 isa_func(struct i2c_adapter *adapter); /* This is the actual algorithm we define */ |