diff options
author | Andrew Morton <akpm@osdl.org> | 2006-05-20 15:00:34 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-05-21 12:59:22 -0700 |
commit | fad43488b8c9b3914fcdc48ee3b8d30aeb49fa30 (patch) | |
tree | 4f51b7120a6e32aa3d91e5b6213279675e25d4df /sound/drivers | |
parent | 9e8a3d229b23c34adb9c20cc2875fc67dce12585 (diff) | |
download | linux-3.10-fad43488b8c9b3914fcdc48ee3b8d30aeb49fa30.tar.gz linux-3.10-fad43488b8c9b3914fcdc48ee3b8d30aeb49fa30.tar.bz2 linux-3.10-fad43488b8c9b3914fcdc48ee3b8d30aeb49fa30.zip |
[PATCH] mpu401 section fix
WARNING: sound/drivers/mpu401/snd-mpu401.o - Section mismatch: reference to .init.text: from .text between 'snd_mpu401_pnp_probe' (at offset 0x1f7) and 'snd_mpu401_pnp_remove'
Cc: Jaroslav Kysela <perex@suse.cz>
Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/mpu401/mpu401.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/drivers/mpu401/mpu401.c b/sound/drivers/mpu401/mpu401.c index da7ef26995c..77b06009735 100644 --- a/sound/drivers/mpu401/mpu401.c +++ b/sound/drivers/mpu401/mpu401.c @@ -151,7 +151,7 @@ static struct pnp_device_id snd_mpu401_pnpids[] = { MODULE_DEVICE_TABLE(pnp, snd_mpu401_pnpids); -static int __init snd_mpu401_pnp(int dev, struct pnp_dev *device, +static int __devinit snd_mpu401_pnp(int dev, struct pnp_dev *device, const struct pnp_device_id *id) { if (!pnp_port_valid(device, 0) || |