aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/raw1394.c
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2008-02-18 15:11:07 -0500
committerStefan Richter <stefanr@s5r6.in-berlin.de>2008-04-18 11:55:29 -0400
commitd2ace29fa44589da51fedc06a67b3f05301f3bfd (patch)
tree3790d77128ba48194af5ca667ba304d3047c1363 /drivers/ieee1394/raw1394.c
parent63995d46506a774f5ddd6b51c017d42c3fbfaedb (diff)
ieee1394: prevent device binding of raw1394, video1394, dv1394
These drivers don't need to match any unit_directory type device. They just need the id_table for module autoloading per module alias. Not binding any of these drivers allows special-purpose drivers with similar or same IDs to bind to devices. This currently only benefits out-of-tree drivers; on the other hand it is in no way detrimental to in-tree drivers. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/raw1394.c')
-rw-r--r--drivers/ieee1394/raw1394.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ieee1394/raw1394.c b/drivers/ieee1394/raw1394.c
index 37e7e109af38..3634785d3b4b 100644
--- a/drivers/ieee1394/raw1394.c
+++ b/drivers/ieee1394/raw1394.c
@@ -2959,7 +2959,6 @@ MODULE_DEVICE_TABLE(ieee1394, raw1394_id_table);
2959 2959
2960static struct hpsb_protocol_driver raw1394_driver = { 2960static struct hpsb_protocol_driver raw1394_driver = {
2961 .name = "raw1394", 2961 .name = "raw1394",
2962 .id_table = raw1394_id_table,
2963}; 2962};
2964 2963
2965/******************************************************************************/ 2964/******************************************************************************/