Commit 10b324ed authored by Guido Guenther's avatar Guido Guenther Committed by Greg Kroah-Hartman

[PATCH] PPC: fix oops in alsa powermac driver

this fixes an oops in 2.6.16.X when loading the snd_powermac module. The
name of the requested module changed during the 2.6.16 development cycle
from i2c-keylargo to i2c-powermac:
Signed-off-by: default avatarGuido Guenther <agx@sigxcpu.org>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f3a35610
...@@ -627,8 +627,8 @@ thermostat_init(void) ...@@ -627,8 +627,8 @@ thermostat_init(void)
if(therm_type == ADT7460) if(therm_type == ADT7460)
device_create_file(&of_dev->dev, &dev_attr_sensor2_fan_speed); device_create_file(&of_dev->dev, &dev_attr_sensor2_fan_speed);
#ifndef CONFIG_I2C_KEYWEST #ifndef CONFIG_I2C_POWERMAC
request_module("i2c-keywest"); request_module("i2c-powermac");
#endif #endif
return i2c_add_driver(&thermostat_driver); return i2c_add_driver(&thermostat_driver);
......
...@@ -195,8 +195,8 @@ tas_init(int driver_id, const char *driver_name) ...@@ -195,8 +195,8 @@ tas_init(int driver_id, const char *driver_name)
printk(KERN_INFO "tas driver [%s])\n", driver_name); printk(KERN_INFO "tas driver [%s])\n", driver_name);
#ifndef CONFIG_I2C_KEYWEST #ifndef CONFIG_I2C_POWERMAC
request_module("i2c-keywest"); request_module("i2c-powermac");
#endif #endif
tas_node = find_devices("deq"); tas_node = find_devices("deq");
if (tas_node == NULL) if (tas_node == NULL)
......
...@@ -256,7 +256,7 @@ int __init snd_pmac_daca_init(struct snd_pmac *chip) ...@@ -256,7 +256,7 @@ int __init snd_pmac_daca_init(struct snd_pmac *chip)
#ifdef CONFIG_KMOD #ifdef CONFIG_KMOD
if (current->fs->root) if (current->fs->root)
request_module("i2c-keywest"); request_module("i2c-powermac");
#endif /* CONFIG_KMOD */ #endif /* CONFIG_KMOD */
mix = kmalloc(sizeof(*mix), GFP_KERNEL); mix = kmalloc(sizeof(*mix), GFP_KERNEL);
......
...@@ -1314,7 +1314,7 @@ int __init snd_pmac_tumbler_init(struct snd_pmac *chip) ...@@ -1314,7 +1314,7 @@ int __init snd_pmac_tumbler_init(struct snd_pmac *chip)
#ifdef CONFIG_KMOD #ifdef CONFIG_KMOD
if (current->fs->root) if (current->fs->root)
request_module("i2c-keywest"); request_module("i2c-powermac");
#endif /* CONFIG_KMOD */ #endif /* CONFIG_KMOD */
mix = kmalloc(sizeof(*mix), GFP_KERNEL); mix = kmalloc(sizeof(*mix), GFP_KERNEL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment