Skip to content

Commit

Permalink
[PATCH] i2c-sibyte: Fix modular build breakage
Browse files Browse the repository at this point in the history
Fix undefined reference in i2c_sibyte_exit().

   drivers/built-in.o: In function `i2c_sibyte_exit':
   i2c-sibyte.c:(.exit.text+0x368): undefined reference to `i2c_del_bus'
   i2c-sibyte.c:(.exit.text+0x368): relocation truncated to fit: R_MIPS_26 against `i2c_del_bus'
   i2c-sibyte.c:(.exit.text+0x38c): undefined reference to `i2c_del_bus'
   i2c-sibyte.c:(.exit.text+0x38c): relocation truncated to fit: R_MIPS_26 against `i2c_del_bus'

Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Yoichi Yuasa authored and Linus Torvalds committed Sep 29, 2006
1 parent 181b648 commit ae1390d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/i2c/busses/i2c-sibyte.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ static int __init i2c_sibyte_init(void)

static void __exit i2c_sibyte_exit(void)
{
i2c_del_bus(&sibyte_board_adapter[0]);
i2c_del_bus(&sibyte_board_adapter[1]);
i2c_del_adapter(&sibyte_board_adapter[0]);
i2c_del_adapter(&sibyte_board_adapter[1]);
}

module_init(i2c_sibyte_init);
Expand Down

0 comments on commit ae1390d

Please sign in to comment.