i2c-amd756-s4882: Fix an error path

If initialization fails, we want to restore the physical bus, not delete
it again.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
Jean Delvare 2008-04-29 23:11:38 +02:00 committed by Jean Delvare
parent 306f39f8f2
commit ee56d97742

View file

@ -1,7 +1,7 @@
/* /*
* i2c-amd756-s4882.c - i2c-amd756 extras for the Tyan S4882 motherboard * i2c-amd756-s4882.c - i2c-amd756 extras for the Tyan S4882 motherboard
* *
* Copyright (C) 2004 Jean Delvare <khali@linux-fr.org> * Copyright (C) 2004, 2008 Jean Delvare <khali@linux-fr.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -231,7 +231,8 @@ static int __init amd756_s4882_init(void)
kfree(s4882_adapter); kfree(s4882_adapter);
s4882_adapter = NULL; s4882_adapter = NULL;
ERROR1: ERROR1:
i2c_del_adapter(&amd756_smbus); /* Restore physical bus */
i2c_add_adapter(&amd756_smbus);
ERROR0: ERROR0:
return error; return error;
} }