diff options
Diffstat (limited to 'drivers/ieee1394/raw1394.c')
-rw-r--r-- | drivers/ieee1394/raw1394.c | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/drivers/ieee1394/raw1394.c b/drivers/ieee1394/raw1394.c index bf71e069eaf5..ad2108f27a04 100644 --- a/drivers/ieee1394/raw1394.c +++ b/drivers/ieee1394/raw1394.c | |||
@@ -99,6 +99,21 @@ static struct hpsb_address_ops arm_ops = { | |||
99 | 99 | ||
100 | static void queue_complete_cb(struct pending_request *req); | 100 | static void queue_complete_cb(struct pending_request *req); |
101 | 101 | ||
102 | #include <asm/current.h> | ||
103 | static void print_old_iso_deprecation(void) | ||
104 | { | ||
105 | static pid_t p; | ||
106 | |||
107 | if (p == current->pid) | ||
108 | return; | ||
109 | p = current->pid; | ||
110 | printk(KERN_WARNING "raw1394: WARNING - Program \"%s\" uses unsupported" | ||
111 | " isochronous request types which will be removed in a next" | ||
112 | " kernel release\n", current->comm); | ||
113 | printk(KERN_WARNING "raw1394: Update your software to use libraw1394's" | ||
114 | " newer interface\n"); | ||
115 | } | ||
116 | |||
102 | static struct pending_request *__alloc_pending_request(gfp_t flags) | 117 | static struct pending_request *__alloc_pending_request(gfp_t flags) |
103 | { | 118 | { |
104 | struct pending_request *req; | 119 | struct pending_request *req; |
@@ -2292,6 +2307,7 @@ static int state_connected(struct file_info *fi, struct pending_request *req) | |||
2292 | return sizeof(struct raw1394_request); | 2307 | return sizeof(struct raw1394_request); |
2293 | 2308 | ||
2294 | case RAW1394_REQ_ISO_SEND: | 2309 | case RAW1394_REQ_ISO_SEND: |
2310 | print_old_iso_deprecation(); | ||
2295 | return handle_iso_send(fi, req, node); | 2311 | return handle_iso_send(fi, req, node); |
2296 | 2312 | ||
2297 | case RAW1394_REQ_ARM_REGISTER: | 2313 | case RAW1394_REQ_ARM_REGISTER: |
@@ -2310,6 +2326,7 @@ static int state_connected(struct file_info *fi, struct pending_request *req) | |||
2310 | return reset_notification(fi, req); | 2326 | return reset_notification(fi, req); |
2311 | 2327 | ||
2312 | case RAW1394_REQ_ISO_LISTEN: | 2328 | case RAW1394_REQ_ISO_LISTEN: |
2329 | print_old_iso_deprecation(); | ||
2313 | handle_iso_listen(fi, req); | 2330 | handle_iso_listen(fi, req); |
2314 | return sizeof(struct raw1394_request); | 2331 | return sizeof(struct raw1394_request); |
2315 | 2332 | ||
@@ -2970,12 +2987,8 @@ static struct ieee1394_device_id raw1394_id_table[] = { | |||
2970 | MODULE_DEVICE_TABLE(ieee1394, raw1394_id_table); | 2987 | MODULE_DEVICE_TABLE(ieee1394, raw1394_id_table); |
2971 | 2988 | ||
2972 | static struct hpsb_protocol_driver raw1394_driver = { | 2989 | static struct hpsb_protocol_driver raw1394_driver = { |
2973 | .name = "raw1394 Driver", | 2990 | .name = "raw1394", |
2974 | .id_table = raw1394_id_table, | 2991 | .id_table = raw1394_id_table, |
2975 | .driver = { | ||
2976 | .name = "raw1394", | ||
2977 | .bus = &ieee1394_bus_type, | ||
2978 | }, | ||
2979 | }; | 2992 | }; |
2980 | 2993 | ||
2981 | /******************************************************************************/ | 2994 | /******************************************************************************/ |