aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@fs.tum.de>2004-08-22 22:54:25 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-22 22:54:25 -0700
commite445e68097b4deab4ac5aa3e1b5b6098acb4fc31 (patch)
tree6dbee4249cae185cb37b2ef083b727af0618ef86 /drivers
parentc7670acc73f504e54a628c7d523ef076ce17a53d (diff)
downloadhistory-e445e68097b4deab4ac5aa3e1b5b6098acb4fc31.tar.gz
[PATCH] radio-maestro.c: gcc-3.5 fixes
CC drivers/media/radio/radio-maestro.o drivers/media/radio/radio-maestro.c: In function `maestro_radio_init': drivers/media/radio/radio-maestro.c:273: sorry, unimplemented: inlining failed in call to 'radio_install': function body not available drivers/media/radio/radio-maestro.c:291: sorry, unimplemented: called from here drivers/media/radio/radio-maestro.c:273: sorry, unimplemented: inlining failed in call to 'radio_install': function body not available drivers/media/radio/radio-maestro.c:295: sorry, unimplemented: called from here make[3]: *** [drivers/media/radio/radio-maestro.o] Error 1 Signed-off-by: Adrian Bunk <bunk@fs.tum.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/radio/radio-maestro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-maestro.c b/drivers/media/radio/radio-maestro.c
index 6a18c0088a847b..0bcb892c42007c 100644
--- a/drivers/media/radio/radio-maestro.c
+++ b/drivers/media/radio/radio-maestro.c
@@ -270,7 +270,7 @@ static int radio_ioctl(struct inode *inode, struct file *file,
return ret;
}
-inline static __u16 radio_install(struct pci_dev *pcidev);
+static __u16 radio_install(struct pci_dev *pcidev);
MODULE_AUTHOR("Adam Tlalka, atlka@pg.gda.pl");
MODULE_DESCRIPTION("Radio driver for the Maestro PCI sound card radio.");
@@ -324,7 +324,7 @@ inline static __u16 radio_power_on(struct radio_device *dev)
return (ofreq == radio_bits_get(dev));
}
-inline static __u16 radio_install(struct pci_dev *pcidev)
+static __u16 radio_install(struct pci_dev *pcidev)
{
if(((pcidev->class >> 8) & 0xffff) != PCI_CLASS_MULTIMEDIA_AUDIO)
return 0;