summaryrefslogtreecommitdiff
path: root/drivers/media/radio/radio-isa.h
diff options
context:
space:
mode:
authorOndrej Zary <linux@rainbow-software.org>2012-03-22 21:53:01 +0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-04-11 02:52:16 +0400
commit865d7ec93433a3c9d8d2c2372e582853f52a7327 (patch)
treed4f89b62ded8ea7c06492addf5a0dfbd45f3e54a /drivers/media/radio/radio-isa.h
parent8766e86535c9c9d46621f285b85266b2975348c2 (diff)
downloadlinux-865d7ec93433a3c9d8d2c2372e582853f52a7327.tar.xz
[media] radio-isa: PnP support for the new ISA radio framework
Add PnP support to the new ISA radio framework. Signed-off-by: Ondrej Zary <linux@rainbow-software.org> Reviewed-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio/radio-isa.h')
-rw-r--r--drivers/media/radio/radio-isa.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/radio/radio-isa.h b/drivers/media/radio/radio-isa.h
index 8a0ea84d86de..ba4c01f1bd0c 100644
--- a/drivers/media/radio/radio-isa.h
+++ b/drivers/media/radio/radio-isa.h
@@ -24,6 +24,7 @@
#define _RADIO_ISA_H_
#include <linux/isa.h>
+#include <linux/pnp.h>
#include <linux/videodev2.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ctrls.h>
@@ -76,6 +77,9 @@ struct radio_isa_ops {
/* Top level structure needed to instantiate the cards */
struct radio_isa_driver {
struct isa_driver driver;
+#ifdef CONFIG_PNP
+ struct pnp_driver pnp_driver;
+#endif
const struct radio_isa_ops *ops;
/* The module_param_array with the specified I/O ports */
int *io_params;
@@ -101,5 +105,10 @@ struct radio_isa_driver {
int radio_isa_match(struct device *pdev, unsigned int dev);
int radio_isa_probe(struct device *pdev, unsigned int dev);
int radio_isa_remove(struct device *pdev, unsigned int dev);
+#ifdef CONFIG_PNP
+int radio_isa_pnp_probe(struct pnp_dev *dev,
+ const struct pnp_device_id *dev_id);
+void radio_isa_pnp_remove(struct pnp_dev *dev);
+#endif
#endif