From: Laurent Riffard <laurent.riffard at free.fr> Content-Disposition: inline; filename=i2c-drop-driver-owner-and-name-07-ppc.patch We should use the i2c_driver.driver's .name and .owner fields instead of the i2c_driver's ones. This patch updates the drivers for ppc arch. Signed-off-by: Laurent Riffard <laurent.riffard at free.fr> Signed-off-by: Jean Delvare <khali at linux-fr.org> --- sound/ppc/keywest.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- linux-2.6.14-rc5.orig/sound/ppc/keywest.c 2005-10-25 20:45:03.000000000 +0200 +++ linux-2.6.14-rc5/sound/ppc/keywest.c 2005-10-25 21:02:06.000000000 +0200 @@ -41,7 +41,10 @@ static int keywest_detach_client(struct i2c_client *client); struct i2c_driver keywest_driver = { - .name = "PMac Keywest Audio", + .driver = { + .owner = THIS_MODULE, + .name = "PMac Keywest Audio", + }, .id = I2C_DRIVERID_KEYWEST, .attach_adapter = &keywest_attach_adapter, .detach_client = &keywest_detach_client, -- Jean Delvare