diff options
author | Jean Delvare <khali@linux-fr.org> | 2006-08-13 17:33:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-26 18:38:50 -0400 |
commit | 51c3711704b66986373408cbc0540abea43d2380 (patch) | |
tree | 2bb3fc022d9462a76deb7d29c9001377906ec5eb /drivers/i2c | |
parent | 3fd39687540bd5d0501f413c91461d3b9fcbb525 (diff) |
i2c-algo-sibyte: Merge into i2c-sibyte
i2c-algo-sibyte: Merge into i2c-sibyte
Merge i2c-algo-sibyte into i2c-sibyte, as this is a complete,
hardware-dependent SMBus implementation and not a reusable algorithm.
Perform some basic coding style cleanups while we're here (mainly
space-based indentation replaced by tabulations.)
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/algos/Kconfig | 6 | ||||
-rw-r--r-- | drivers/i2c/algos/Makefile | 1 | ||||
-rw-r--r-- | drivers/i2c/algos/i2c-algo-sibyte.c | 186 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-sibyte.c | 158 |
4 files changed, 155 insertions, 196 deletions
diff --git a/drivers/i2c/algos/Kconfig b/drivers/i2c/algos/Kconfig index 30408015d231..c034820615bb 100644 --- a/drivers/i2c/algos/Kconfig +++ b/drivers/i2c/algos/Kconfig | |||
@@ -53,12 +53,6 @@ config I2C_ALGO8XX | |||
53 | tristate "MPC8xx CPM I2C interface" | 53 | tristate "MPC8xx CPM I2C interface" |
54 | depends on 8xx && I2C | 54 | depends on 8xx && I2C |
55 | 55 | ||
56 | config I2C_ALGO_SIBYTE | ||
57 | tristate "SiByte SMBus interface" | ||
58 | depends on SIBYTE_SB1xxx_SOC && I2C | ||
59 | help | ||
60 | Supports the SiByte SOC on-chip I2C interfaces (2 channels). | ||
61 | |||
62 | config I2C_ALGO_SGI | 56 | config I2C_ALGO_SGI |
63 | tristate "I2C SGI interfaces" | 57 | tristate "I2C SGI interfaces" |
64 | depends on I2C && (SGI_IP22 || SGI_IP32 || X86_VISWS) | 58 | depends on I2C && (SGI_IP22 || SGI_IP32 || X86_VISWS) |
diff --git a/drivers/i2c/algos/Makefile b/drivers/i2c/algos/Makefile index 867fe1f67401..208be04a3dbd 100644 --- a/drivers/i2c/algos/Makefile +++ b/drivers/i2c/algos/Makefile | |||
@@ -6,7 +6,6 @@ obj-$(CONFIG_I2C_ALGOBIT) += i2c-algo-bit.o | |||
6 | obj-$(CONFIG_I2C_ALGOPCF) += i2c-algo-pcf.o | 6 | obj-$(CONFIG_I2C_ALGOPCF) += i2c-algo-pcf.o |
7 | obj-$(CONFIG_I2C_ALGOPCA) += i2c-algo-pca.o | 7 | obj-$(CONFIG_I2C_ALGOPCA) += i2c-algo-pca.o |
8 | obj-$(CONFIG_I2C_ALGOITE) += i2c-algo-ite.o | 8 | obj-$(CONFIG_I2C_ALGOITE) += i2c-algo-ite.o |
9 | obj-$(CONFIG_I2C_ALGO_SIBYTE) += i2c-algo-sibyte.o | ||
10 | obj-$(CONFIG_I2C_ALGO_SGI) += i2c-algo-sgi.o | 9 | obj-$(CONFIG_I2C_ALGO_SGI) += i2c-algo-sgi.o |
11 | 10 | ||
12 | ifeq ($(CONFIG_I2C_DEBUG_ALGO),y) | 11 | ifeq ($(CONFIG_I2C_DEBUG_ALGO),y) |
diff --git a/drivers/i2c/algos/i2c-algo-sibyte.c b/drivers/i2c/algos/i2c-algo-sibyte.c deleted file mode 100644 index 16d666fa16f3..000000000000 --- a/drivers/i2c/algos/i2c-algo-sibyte.c +++ /dev/null | |||
@@ -1,186 +0,0 @@ | |||
1 | /* ------------------------------------------------------------------------- */ | ||
2 | /* i2c-algo-sibyte.c i2c driver algorithms for bit-shift adapters */ | ||
3 | /* ------------------------------------------------------------------------- */ | ||
4 | /* Copyright (C) 2001,2002,2003 Broadcom Corporation | ||
5 | Copyright (C) 1995-2000 Simon G. Vogl | ||
6 | |||
7 | This program is free software; you can redistribute it and/or modify | ||
8 | it under the terms of the GNU General Public License as published by | ||
9 | the Free Software Foundation; either version 2 of the License, or | ||
10 | (at your option) any later version. | ||
11 | |||
12 | This program is distributed in the hope that it will be useful, | ||
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | GNU General Public License for more details. | ||
16 | |||
17 | You should have received a copy of the GNU General Public License | ||
18 | along with this program; if not, write to the Free Software | ||
19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | ||
20 | /* ------------------------------------------------------------------------- */ | ||
21 | |||
22 | /* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi> and even | ||
23 | Frodo Looijaard <frodol@dds.nl>. */ | ||
24 | |||
25 | /* Ported for SiByte SOCs by Broadcom Corporation. */ | ||
26 | |||
27 | #include <linux/kernel.h> | ||
28 | #include <linux/module.h> | ||
29 | #include <linux/init.h> | ||
30 | |||
31 | #include <asm/io.h> | ||
32 | #include <asm/sibyte/sb1250_regs.h> | ||
33 | #include <asm/sibyte/sb1250_smbus.h> | ||
34 | |||
35 | #include <linux/i2c.h> | ||
36 | #include <linux/i2c-algo-sibyte.h> | ||
37 | |||
38 | /* ----- global defines ----------------------------------------------- */ | ||
39 | #define SMB_CSR(a,r) ((long)(a->reg_base + r)) | ||
40 | |||
41 | /* ----- global variables --------------------------------------------- */ | ||
42 | |||
43 | /* module parameters: | ||
44 | */ | ||
45 | static int bit_scan; /* have a look at what's hanging 'round */ | ||
46 | |||
47 | |||
48 | static int smbus_xfer(struct i2c_adapter *i2c_adap, u16 addr, | ||
49 | unsigned short flags, char read_write, | ||
50 | u8 command, int size, union i2c_smbus_data * data) | ||
51 | { | ||
52 | struct i2c_algo_sibyte_data *adap = i2c_adap->algo_data; | ||
53 | int data_bytes = 0; | ||
54 | int error; | ||
55 | |||
56 | while (csr_in32(SMB_CSR(adap, R_SMB_STATUS)) & M_SMB_BUSY) | ||
57 | ; | ||
58 | |||
59 | switch (size) { | ||
60 | case I2C_SMBUS_QUICK: | ||
61 | csr_out32((V_SMB_ADDR(addr) | (read_write == I2C_SMBUS_READ ? M_SMB_QDATA : 0) | | ||
62 | V_SMB_TT_QUICKCMD), SMB_CSR(adap, R_SMB_START)); | ||
63 | break; | ||
64 | case I2C_SMBUS_BYTE: | ||
65 | if (read_write == I2C_SMBUS_READ) { | ||
66 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_RD1BYTE), | ||
67 | SMB_CSR(adap, R_SMB_START)); | ||
68 | data_bytes = 1; | ||
69 | } else { | ||
70 | csr_out32(V_SMB_CMD(command), SMB_CSR(adap, R_SMB_CMD)); | ||
71 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_WR1BYTE), | ||
72 | SMB_CSR(adap, R_SMB_START)); | ||
73 | } | ||
74 | break; | ||
75 | case I2C_SMBUS_BYTE_DATA: | ||
76 | csr_out32(V_SMB_CMD(command), SMB_CSR(adap, R_SMB_CMD)); | ||
77 | if (read_write == I2C_SMBUS_READ) { | ||
78 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_CMD_RD1BYTE), | ||
79 | SMB_CSR(adap, R_SMB_START)); | ||
80 | data_bytes = 1; | ||
81 | } else { | ||
82 | csr_out32(V_SMB_LB(data->byte), SMB_CSR(adap, R_SMB_DATA)); | ||
83 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_WR2BYTE), | ||
84 | SMB_CSR(adap, R_SMB_START)); | ||
85 | } | ||
86 | break; | ||
87 | case I2C_SMBUS_WORD_DATA: | ||
88 | csr_out32(V_SMB_CMD(command), SMB_CSR(adap, R_SMB_CMD)); | ||
89 | if (read_write == I2C_SMBUS_READ) { | ||
90 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_CMD_RD2BYTE), | ||
91 | SMB_CSR(adap, R_SMB_START)); | ||
92 | data_bytes = 2; | ||
93 | } else { | ||
94 | csr_out32(V_SMB_LB(data->word & 0xff), SMB_CSR(adap, R_SMB_DATA)); | ||
95 | csr_out32(V_SMB_MB(data->word >> 8), SMB_CSR(adap, R_SMB_DATA)); | ||
96 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_WR2BYTE), | ||
97 | SMB_CSR(adap, R_SMB_START)); | ||
98 | } | ||
99 | break; | ||
100 | default: | ||
101 | return -1; /* XXXKW better error code? */ | ||
102 | } | ||
103 | |||
104 | while (csr_in32(SMB_CSR(adap, R_SMB_STATUS)) & M_SMB_BUSY) | ||
105 | ; | ||
106 | |||
107 | error = csr_in32(SMB_CSR(adap, R_SMB_STATUS)); | ||
108 | if (error & M_SMB_ERROR) { | ||
109 | /* Clear error bit by writing a 1 */ | ||
110 | csr_out32(M_SMB_ERROR, SMB_CSR(adap, R_SMB_STATUS)); | ||
111 | return -1; /* XXXKW better error code? */ | ||
112 | } | ||
113 | |||
114 | if (data_bytes == 1) | ||
115 | data->byte = csr_in32(SMB_CSR(adap, R_SMB_DATA)) & 0xff; | ||
116 | if (data_bytes == 2) | ||
117 | data->word = csr_in32(SMB_CSR(adap, R_SMB_DATA)) & 0xffff; | ||
118 | |||
119 | return 0; | ||
120 | } | ||
121 | |||
122 | static u32 bit_func(struct i2c_adapter *adap) | ||
123 | { | ||
124 | return (I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | | ||
125 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA); | ||
126 | } | ||
127 | |||
128 | |||
129 | /* -----exported algorithm data: ------------------------------------- */ | ||
130 | |||
131 | static struct i2c_algorithm i2c_sibyte_algo = { | ||
132 | .smbus_xfer = smbus_xfer, | ||
133 | .functionality = bit_func, | ||
134 | }; | ||
135 | |||
136 | /* | ||
137 | * registering functions to load algorithms at runtime | ||
138 | */ | ||
139 | int i2c_sibyte_add_bus(struct i2c_adapter *i2c_adap, int speed) | ||
140 | { | ||
141 | int i; | ||
142 | struct i2c_algo_sibyte_data *adap = i2c_adap->algo_data; | ||
143 | |||
144 | /* register new adapter to i2c module... */ | ||
145 | i2c_adap->algo = &i2c_sibyte_algo; | ||
146 | |||
147 | /* Set the frequency to 100 kHz */ | ||
148 | csr_out32(speed, SMB_CSR(adap,R_SMB_FREQ)); | ||
149 | csr_out32(0, SMB_CSR(adap,R_SMB_CONTROL)); | ||
150 | |||
151 | /* scan bus */ | ||
152 | if (bit_scan) { | ||
153 | union i2c_smbus_data data; | ||
154 | int rc; | ||
155 | printk(KERN_INFO " i2c-algo-sibyte.o: scanning bus %s.\n", | ||
156 | i2c_adap->name); | ||
157 | for (i = 0x00; i < 0x7f; i++) { | ||
158 | /* XXXKW is this a realistic probe? */ | ||
159 | rc = smbus_xfer(i2c_adap, i, 0, I2C_SMBUS_READ, 0, | ||
160 | I2C_SMBUS_BYTE_DATA, &data); | ||
161 | if (!rc) { | ||
162 | printk("(%02x)",i); | ||
163 | } else | ||
164 | printk("."); | ||
165 | } | ||
166 | printk("\n"); | ||
167 | } | ||
168 | |||
169 | return i2c_add_adapter(i2c_adap); | ||
170 | } | ||
171 | |||
172 | |||
173 | int i2c_sibyte_del_bus(struct i2c_adapter *adap) | ||
174 | { | ||
175 | return i2c_del_adapter(adap); | ||
176 | } | ||
177 | |||
178 | |||
179 | EXPORT_SYMBOL(i2c_sibyte_add_bus); | ||
180 | EXPORT_SYMBOL(i2c_sibyte_del_bus); | ||
181 | |||
182 | MODULE_AUTHOR("Kip Walker, Broadcom Corp."); | ||
183 | MODULE_DESCRIPTION("SiByte I2C-Bus algorithm"); | ||
184 | module_param(bit_scan, int, 0); | ||
185 | MODULE_PARM_DESC(bit_scan, "Scan for active chips on the bus"); | ||
186 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/i2c/busses/i2c-sibyte.c b/drivers/i2c/busses/i2c-sibyte.c index fa503ed9f86d..f516eb7a23f7 100644 --- a/drivers/i2c/busses/i2c-sibyte.c +++ b/drivers/i2c/busses/i2c-sibyte.c | |||
@@ -1,6 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2004 Steven J. Hill | 2 | * Copyright (C) 2004 Steven J. Hill |
3 | * Copyright (C) 2001,2002,2003 Broadcom Corporation | 3 | * Copyright (C) 2001,2002,2003 Broadcom Corporation |
4 | * Copyright (C) 1995-2000 Simon G. Vogl | ||
4 | * | 5 | * |
5 | * This program is free software; you can redistribute it and/or | 6 | * This program is free software; you can redistribute it and/or |
6 | * modify it under the terms of the GNU General Public License | 7 | * modify it under the terms of the GNU General Public License |
@@ -17,11 +18,162 @@ | |||
17 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 18 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | */ | 19 | */ |
19 | 20 | ||
21 | #include <linux/kernel.h> | ||
20 | #include <linux/module.h> | 22 | #include <linux/module.h> |
21 | #include <linux/i2c-algo-sibyte.h> | 23 | #include <linux/init.h> |
24 | #include <linux/i2c.h> | ||
25 | #include <asm/io.h> | ||
22 | #include <asm/sibyte/sb1250_regs.h> | 26 | #include <asm/sibyte/sb1250_regs.h> |
23 | #include <asm/sibyte/sb1250_smbus.h> | 27 | #include <asm/sibyte/sb1250_smbus.h> |
24 | 28 | ||
29 | |||
30 | struct i2c_algo_sibyte_data { | ||
31 | void *data; /* private data */ | ||
32 | int bus; /* which bus */ | ||
33 | void *reg_base; /* CSR base */ | ||
34 | }; | ||
35 | |||
36 | /* ----- global defines ----------------------------------------------- */ | ||
37 | #define SMB_CSR(a,r) ((long)(a->reg_base + r)) | ||
38 | |||
39 | /* ----- global variables --------------------------------------------- */ | ||
40 | |||
41 | /* module parameters: | ||
42 | */ | ||
43 | static int bit_scan; /* have a look at what's hanging 'round */ | ||
44 | module_param(bit_scan, int, 0); | ||
45 | MODULE_PARM_DESC(bit_scan, "Scan for active chips on the bus"); | ||
46 | |||
47 | |||
48 | static int smbus_xfer(struct i2c_adapter *i2c_adap, u16 addr, | ||
49 | unsigned short flags, char read_write, | ||
50 | u8 command, int size, union i2c_smbus_data * data) | ||
51 | { | ||
52 | struct i2c_algo_sibyte_data *adap = i2c_adap->algo_data; | ||
53 | int data_bytes = 0; | ||
54 | int error; | ||
55 | |||
56 | while (csr_in32(SMB_CSR(adap, R_SMB_STATUS)) & M_SMB_BUSY) | ||
57 | ; | ||
58 | |||
59 | switch (size) { | ||
60 | case I2C_SMBUS_QUICK: | ||
61 | csr_out32((V_SMB_ADDR(addr) | | ||
62 | (read_write == I2C_SMBUS_READ ? M_SMB_QDATA : 0) | | ||
63 | V_SMB_TT_QUICKCMD), SMB_CSR(adap, R_SMB_START)); | ||
64 | break; | ||
65 | case I2C_SMBUS_BYTE: | ||
66 | if (read_write == I2C_SMBUS_READ) { | ||
67 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_RD1BYTE), | ||
68 | SMB_CSR(adap, R_SMB_START)); | ||
69 | data_bytes = 1; | ||
70 | } else { | ||
71 | csr_out32(V_SMB_CMD(command), SMB_CSR(adap, R_SMB_CMD)); | ||
72 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_WR1BYTE), | ||
73 | SMB_CSR(adap, R_SMB_START)); | ||
74 | } | ||
75 | break; | ||
76 | case I2C_SMBUS_BYTE_DATA: | ||
77 | csr_out32(V_SMB_CMD(command), SMB_CSR(adap, R_SMB_CMD)); | ||
78 | if (read_write == I2C_SMBUS_READ) { | ||
79 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_CMD_RD1BYTE), | ||
80 | SMB_CSR(adap, R_SMB_START)); | ||
81 | data_bytes = 1; | ||
82 | } else { | ||
83 | csr_out32(V_SMB_LB(data->byte), | ||
84 | SMB_CSR(adap, R_SMB_DATA)); | ||
85 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_WR2BYTE), | ||
86 | SMB_CSR(adap, R_SMB_START)); | ||
87 | } | ||
88 | break; | ||
89 | case I2C_SMBUS_WORD_DATA: | ||
90 | csr_out32(V_SMB_CMD(command), SMB_CSR(adap, R_SMB_CMD)); | ||
91 | if (read_write == I2C_SMBUS_READ) { | ||
92 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_CMD_RD2BYTE), | ||
93 | SMB_CSR(adap, R_SMB_START)); | ||
94 | data_bytes = 2; | ||
95 | } else { | ||
96 | csr_out32(V_SMB_LB(data->word & 0xff), | ||
97 | SMB_CSR(adap, R_SMB_DATA)); | ||
98 | csr_out32(V_SMB_MB(data->word >> 8), | ||
99 | SMB_CSR(adap, R_SMB_DATA)); | ||
100 | csr_out32((V_SMB_ADDR(addr) | V_SMB_TT_WR2BYTE), | ||
101 | SMB_CSR(adap, R_SMB_START)); | ||
102 | } | ||
103 | break; | ||
104 | default: | ||
105 | return -1; /* XXXKW better error code? */ | ||
106 | } | ||
107 | |||
108 | while (csr_in32(SMB_CSR(adap, R_SMB_STATUS)) & M_SMB_BUSY) | ||
109 | ; | ||
110 | |||
111 | error = csr_in32(SMB_CSR(adap, R_SMB_STATUS)); | ||
112 | if (error & M_SMB_ERROR) { | ||
113 | /* Clear error bit by writing a 1 */ | ||
114 | csr_out32(M_SMB_ERROR, SMB_CSR(adap, R_SMB_STATUS)); | ||
115 | return -1; /* XXXKW better error code? */ | ||
116 | } | ||
117 | |||
118 | if (data_bytes == 1) | ||
119 | data->byte = csr_in32(SMB_CSR(adap, R_SMB_DATA)) & 0xff; | ||
120 | if (data_bytes == 2) | ||
121 | data->word = csr_in32(SMB_CSR(adap, R_SMB_DATA)) & 0xffff; | ||
122 | |||
123 | return 0; | ||
124 | } | ||
125 | |||
126 | static u32 bit_func(struct i2c_adapter *adap) | ||
127 | { | ||
128 | return (I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | | ||
129 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA); | ||
130 | } | ||
131 | |||
132 | |||
133 | /* -----exported algorithm data: ------------------------------------- */ | ||
134 | |||
135 | static struct i2c_algorithm i2c_sibyte_algo = { | ||
136 | .smbus_xfer = smbus_xfer, | ||
137 | .functionality = bit_func, | ||
138 | }; | ||
139 | |||
140 | /* | ||
141 | * registering functions to load algorithms at runtime | ||
142 | */ | ||
143 | int i2c_sibyte_add_bus(struct i2c_adapter *i2c_adap, int speed) | ||
144 | { | ||
145 | int i; | ||
146 | struct i2c_algo_sibyte_data *adap = i2c_adap->algo_data; | ||
147 | |||
148 | /* register new adapter to i2c module... */ | ||
149 | i2c_adap->algo = &i2c_sibyte_algo; | ||
150 | |||
151 | /* Set the frequency to 100 kHz */ | ||
152 | csr_out32(speed, SMB_CSR(adap,R_SMB_FREQ)); | ||
153 | csr_out32(0, SMB_CSR(adap,R_SMB_CONTROL)); | ||
154 | |||
155 | /* scan bus */ | ||
156 | if (bit_scan) { | ||
157 | union i2c_smbus_data data; | ||
158 | int rc; | ||
159 | printk(KERN_INFO " i2c-algo-sibyte.o: scanning bus %s.\n", | ||
160 | i2c_adap->name); | ||
161 | for (i = 0x00; i < 0x7f; i++) { | ||
162 | /* XXXKW is this a realistic probe? */ | ||
163 | rc = smbus_xfer(i2c_adap, i, 0, I2C_SMBUS_READ, 0, | ||
164 | I2C_SMBUS_BYTE_DATA, &data); | ||
165 | if (!rc) { | ||
166 | printk("(%02x)",i); | ||
167 | } else | ||
168 | printk("."); | ||
169 | } | ||
170 | printk("\n"); | ||
171 | } | ||
172 | |||
173 | return i2c_add_adapter(i2c_adap); | ||
174 | } | ||
175 | |||
176 | |||
25 | static struct i2c_algo_sibyte_data sibyte_board_data[2] = { | 177 | static struct i2c_algo_sibyte_data sibyte_board_data[2] = { |
26 | { NULL, 0, (void *) (CKSEG1+A_SMB_BASE(0)) }, | 178 | { NULL, 0, (void *) (CKSEG1+A_SMB_BASE(0)) }, |
27 | { NULL, 1, (void *) (CKSEG1+A_SMB_BASE(1)) } | 179 | { NULL, 1, (void *) (CKSEG1+A_SMB_BASE(1)) } |
@@ -58,8 +210,8 @@ static int __init i2c_sibyte_init(void) | |||
58 | 210 | ||
59 | static void __exit i2c_sibyte_exit(void) | 211 | static void __exit i2c_sibyte_exit(void) |
60 | { | 212 | { |
61 | i2c_sibyte_del_bus(&sibyte_board_adapter[0]); | 213 | i2c_del_bus(&sibyte_board_adapter[0]); |
62 | i2c_sibyte_del_bus(&sibyte_board_adapter[1]); | 214 | i2c_del_bus(&sibyte_board_adapter[1]); |
63 | } | 215 | } |
64 | 216 | ||
65 | module_init(i2c_sibyte_init); | 217 | module_init(i2c_sibyte_init); |