diff options
| author | Daniel Mack <daniel@caiaq.de> | 2010-04-12 07:17:25 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-20 16:21:38 -0400 |
| commit | 997ea58eb92f9970b8af7aae48800d0ef43b9423 (patch) | |
| tree | 65e021973e5a48ad7290d5be1f441940566468ad /drivers/input/misc | |
| parent | 48679c6d772b1459a2945729e3a1256ac78fcabf (diff) | |
USB: rename usb_buffer_alloc() and usb_buffer_free() users
For more clearance what the functions actually do,
usb_buffer_alloc() is renamed to usb_alloc_coherent()
usb_buffer_free() is renamed to usb_free_coherent()
They should only be used in code which really needs DMA coherency.
All call sites have been changed accordingly, except for staging
drivers.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Pedro Ribeiro <pedrib@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/input/misc')
| -rw-r--r-- | drivers/input/misc/ati_remote.c | 12 | ||||
| -rw-r--r-- | drivers/input/misc/ati_remote2.c | 4 | ||||
| -rw-r--r-- | drivers/input/misc/cm109.c | 16 | ||||
| -rw-r--r-- | drivers/input/misc/keyspan_remote.c | 6 | ||||
| -rw-r--r-- | drivers/input/misc/powermate.c | 8 | ||||
| -rw-r--r-- | drivers/input/misc/yealink.c | 14 |
6 files changed, 29 insertions, 31 deletions
diff --git a/drivers/input/misc/ati_remote.c b/drivers/input/misc/ati_remote.c index e8bbc619f6df..bce57129afba 100644 --- a/drivers/input/misc/ati_remote.c +++ b/drivers/input/misc/ati_remote.c | |||
| @@ -624,13 +624,13 @@ static void ati_remote_irq_in(struct urb *urb) | |||
| 624 | static int ati_remote_alloc_buffers(struct usb_device *udev, | 624 | static int ati_remote_alloc_buffers(struct usb_device *udev, |
| 625 | struct ati_remote *ati_remote) | 625 | struct ati_remote *ati_remote) |
| 626 | { | 626 | { |
| 627 | ati_remote->inbuf = usb_buffer_alloc(udev, DATA_BUFSIZE, GFP_ATOMIC, | 627 | ati_remote->inbuf = usb_alloc_coherent(udev, DATA_BUFSIZE, GFP_ATOMIC, |
| 628 | &ati_remote->inbuf_dma); | 628 | &ati_remote->inbuf_dma); |
| 629 | if (!ati_remote->inbuf) | 629 | if (!ati_remote->inbuf) |
| 630 | return -1; | 630 | return -1; |
| 631 | 631 | ||
| 632 | ati_remote->outbuf = usb_buffer_alloc(udev, DATA_BUFSIZE, GFP_ATOMIC, | 632 | ati_remote->outbuf = usb_alloc_coherent(udev, DATA_BUFSIZE, GFP_ATOMIC, |
| 633 | &ati_remote->outbuf_dma); | 633 | &ati_remote->outbuf_dma); |
| 634 | if (!ati_remote->outbuf) | 634 | if (!ati_remote->outbuf) |
| 635 | return -1; | 635 | return -1; |
| 636 | 636 | ||
| @@ -653,10 +653,10 @@ static void ati_remote_free_buffers(struct ati_remote *ati_remote) | |||
| 653 | usb_free_urb(ati_remote->irq_urb); | 653 | usb_free_urb(ati_remote->irq_urb); |
| 654 | usb_free_urb(ati_remote->out_urb); | 654 | usb_free_urb(ati_remote->out_urb); |
| 655 | 655 | ||
| 656 | usb_buffer_free(ati_remote->udev, DATA_BUFSIZE, | 656 | usb_free_coherent(ati_remote->udev, DATA_BUFSIZE, |
| 657 | ati_remote->inbuf, ati_remote->inbuf_dma); | 657 | ati_remote->inbuf, ati_remote->inbuf_dma); |
| 658 | 658 | ||
| 659 | usb_buffer_free(ati_remote->udev, DATA_BUFSIZE, | 659 | usb_free_coherent(ati_remote->udev, DATA_BUFSIZE, |
| 660 | ati_remote->outbuf, ati_remote->outbuf_dma); | 660 | ati_remote->outbuf, ati_remote->outbuf_dma); |
| 661 | } | 661 | } |
| 662 | 662 | ||
diff --git a/drivers/input/misc/ati_remote2.c b/drivers/input/misc/ati_remote2.c index 2124b99378bb..e148749b5851 100644 --- a/drivers/input/misc/ati_remote2.c +++ b/drivers/input/misc/ati_remote2.c | |||
| @@ -589,7 +589,7 @@ static int ati_remote2_urb_init(struct ati_remote2 *ar2) | |||
| 589 | int i, pipe, maxp; | 589 | int i, pipe, maxp; |
| 590 | 590 | ||
| 591 | for (i = 0; i < 2; i++) { | 591 | for (i = 0; i < 2; i++) { |
| 592 | ar2->buf[i] = usb_buffer_alloc(udev, 4, GFP_KERNEL, &ar2->buf_dma[i]); | 592 | ar2->buf[i] = usb_alloc_coherent(udev, 4, GFP_KERNEL, &ar2->buf_dma[i]); |
| 593 | if (!ar2->buf[i]) | 593 | if (!ar2->buf[i]) |
| 594 | return -ENOMEM; | 594 | return -ENOMEM; |
| 595 | 595 | ||
| @@ -617,7 +617,7 @@ static void ati_remote2_urb_cleanup(struct ati_remote2 *ar2) | |||
| 617 | 617 | ||
| 618 | for (i = 0; i < 2; i++) { | 618 | for (i = 0; i < 2; i++) { |
| 619 | usb_free_urb(ar2->urb[i]); | 619 | usb_free_urb(ar2->urb[i]); |
| 620 | usb_buffer_free(ar2->udev, 4, ar2->buf[i], ar2->buf_dma[i]); | 620 | usb_free_coherent(ar2->udev, 4, ar2->buf[i], ar2->buf_dma[i]); |
| 621 | } | 621 | } |
| 622 | } | 622 | } |
| 623 | 623 | ||
diff --git a/drivers/input/misc/cm109.c b/drivers/input/misc/cm109.c index 8d2d291ee508..2b0eba6619bd 100644 --- a/drivers/input/misc/cm109.c +++ b/drivers/input/misc/cm109.c | |||
| @@ -630,11 +630,11 @@ static void cm109_usb_cleanup(struct cm109_dev *dev) | |||
| 630 | { | 630 | { |
| 631 | kfree(dev->ctl_req); | 631 | kfree(dev->ctl_req); |
| 632 | if (dev->ctl_data) | 632 | if (dev->ctl_data) |
| 633 | usb_buffer_free(dev->udev, USB_PKT_LEN, | 633 | usb_free_coherent(dev->udev, USB_PKT_LEN, |
| 634 | dev->ctl_data, dev->ctl_dma); | 634 | dev->ctl_data, dev->ctl_dma); |
| 635 | if (dev->irq_data) | 635 | if (dev->irq_data) |
| 636 | usb_buffer_free(dev->udev, USB_PKT_LEN, | 636 | usb_free_coherent(dev->udev, USB_PKT_LEN, |
| 637 | dev->irq_data, dev->irq_dma); | 637 | dev->irq_data, dev->irq_dma); |
| 638 | 638 | ||
| 639 | usb_free_urb(dev->urb_irq); /* parameter validation in core/urb */ | 639 | usb_free_urb(dev->urb_irq); /* parameter validation in core/urb */ |
| 640 | usb_free_urb(dev->urb_ctl); /* parameter validation in core/urb */ | 640 | usb_free_urb(dev->urb_ctl); /* parameter validation in core/urb */ |
| @@ -683,13 +683,13 @@ static int cm109_usb_probe(struct usb_interface *intf, | |||
| 683 | goto err_out; | 683 | goto err_out; |
| 684 | 684 | ||
| 685 | /* allocate usb buffers */ | 685 | /* allocate usb buffers */ |
| 686 | dev->irq_data = usb_buffer_alloc(udev, USB_PKT_LEN, | 686 | dev->irq_data = usb_alloc_coherent(udev, USB_PKT_LEN, |
| 687 | GFP_KERNEL, &dev->irq_dma); | 687 | GFP_KERNEL, &dev->irq_dma); |
| 688 | if (!dev->irq_data) | 688 | if (!dev->irq_data) |
| 689 | goto err_out; | 689 | goto err_out; |
| 690 | 690 | ||
| 691 | dev->ctl_data = usb_buffer_alloc(udev, USB_PKT_LEN, | 691 | dev->ctl_data = usb_alloc_coherent(udev, USB_PKT_LEN, |
| 692 | GFP_KERNEL, &dev->ctl_dma); | 692 | GFP_KERNEL, &dev->ctl_dma); |
| 693 | if (!dev->ctl_data) | 693 | if (!dev->ctl_data) |
| 694 | goto err_out; | 694 | goto err_out; |
| 695 | 695 | ||
diff --git a/drivers/input/misc/keyspan_remote.c b/drivers/input/misc/keyspan_remote.c index 86afdd1fdf9d..a93c525475c6 100644 --- a/drivers/input/misc/keyspan_remote.c +++ b/drivers/input/misc/keyspan_remote.c | |||
| @@ -464,7 +464,7 @@ static int keyspan_probe(struct usb_interface *interface, const struct usb_devic | |||
| 464 | remote->in_endpoint = endpoint; | 464 | remote->in_endpoint = endpoint; |
| 465 | remote->toggle = -1; /* Set to -1 so we will always not match the toggle from the first remote message. */ | 465 | remote->toggle = -1; /* Set to -1 so we will always not match the toggle from the first remote message. */ |
| 466 | 466 | ||
| 467 | remote->in_buffer = usb_buffer_alloc(udev, RECV_SIZE, GFP_ATOMIC, &remote->in_dma); | 467 | remote->in_buffer = usb_alloc_coherent(udev, RECV_SIZE, GFP_ATOMIC, &remote->in_dma); |
| 468 | if (!remote->in_buffer) { | 468 | if (!remote->in_buffer) { |
| 469 | error = -ENOMEM; | 469 | error = -ENOMEM; |
| 470 | goto fail1; | 470 | goto fail1; |
| @@ -543,7 +543,7 @@ static int keyspan_probe(struct usb_interface *interface, const struct usb_devic | |||
| 543 | return 0; | 543 | return 0; |
| 544 | 544 | ||
| 545 | fail3: usb_free_urb(remote->irq_urb); | 545 | fail3: usb_free_urb(remote->irq_urb); |
| 546 | fail2: usb_buffer_free(udev, RECV_SIZE, remote->in_buffer, remote->in_dma); | 546 | fail2: usb_free_coherent(udev, RECV_SIZE, remote->in_buffer, remote->in_dma); |
| 547 | fail1: kfree(remote); | 547 | fail1: kfree(remote); |
| 548 | input_free_device(input_dev); | 548 | input_free_device(input_dev); |
| 549 | 549 | ||
| @@ -564,7 +564,7 @@ static void keyspan_disconnect(struct usb_interface *interface) | |||
| 564 | input_unregister_device(remote->input); | 564 | input_unregister_device(remote->input); |
| 565 | usb_kill_urb(remote->irq_urb); | 565 | usb_kill_urb(remote->irq_urb); |
| 566 | usb_free_urb(remote->irq_urb); | 566 | usb_free_urb(remote->irq_urb); |
| 567 | usb_buffer_free(remote->udev, RECV_SIZE, remote->in_buffer, remote->in_dma); | 567 | usb_free_coherent(remote->udev, RECV_SIZE, remote->in_buffer, remote->in_dma); |
| 568 | kfree(remote); | 568 | kfree(remote); |
| 569 | } | 569 | } |
| 570 | } | 570 | } |
diff --git a/drivers/input/misc/powermate.c b/drivers/input/misc/powermate.c index 7ba4b5f53fc2..bf170f6b4422 100644 --- a/drivers/input/misc/powermate.c +++ b/drivers/input/misc/powermate.c | |||
| @@ -273,8 +273,8 @@ static int powermate_input_event(struct input_dev *dev, unsigned int type, unsig | |||
| 273 | 273 | ||
| 274 | static int powermate_alloc_buffers(struct usb_device *udev, struct powermate_device *pm) | 274 | static int powermate_alloc_buffers(struct usb_device *udev, struct powermate_device *pm) |
| 275 | { | 275 | { |
| 276 | pm->data = usb_buffer_alloc(udev, POWERMATE_PAYLOAD_SIZE_MAX, | 276 | pm->data = usb_alloc_coherent(udev, POWERMATE_PAYLOAD_SIZE_MAX, |
| 277 | GFP_ATOMIC, &pm->data_dma); | 277 | GFP_ATOMIC, &pm->data_dma); |
| 278 | if (!pm->data) | 278 | if (!pm->data) |
| 279 | return -1; | 279 | return -1; |
| 280 | 280 | ||
| @@ -287,8 +287,8 @@ static int powermate_alloc_buffers(struct usb_device *udev, struct powermate_dev | |||
| 287 | 287 | ||
| 288 | static void powermate_free_buffers(struct usb_device *udev, struct powermate_device *pm) | 288 | static void powermate_free_buffers(struct usb_device *udev, struct powermate_device *pm) |
| 289 | { | 289 | { |
| 290 | usb_buffer_free(udev, POWERMATE_PAYLOAD_SIZE_MAX, | 290 | usb_free_coherent(udev, POWERMATE_PAYLOAD_SIZE_MAX, |
| 291 | pm->data, pm->data_dma); | 291 | pm->data, pm->data_dma); |
| 292 | kfree(pm->configcr); | 292 | kfree(pm->configcr); |
| 293 | } | 293 | } |
| 294 | 294 | ||
diff --git a/drivers/input/misc/yealink.c b/drivers/input/misc/yealink.c index 2828328e9dd0..41201c6b5e68 100644 --- a/drivers/input/misc/yealink.c +++ b/drivers/input/misc/yealink.c | |||
| @@ -836,10 +836,8 @@ static int usb_cleanup(struct yealink_dev *yld, int err) | |||
| 836 | usb_free_urb(yld->urb_ctl); | 836 | usb_free_urb(yld->urb_ctl); |
| 837 | 837 | ||
| 838 | kfree(yld->ctl_req); | 838 | kfree(yld->ctl_req); |
| 839 | usb_buffer_free(yld->udev, USB_PKT_LEN, | 839 | usb_free_coherent(yld->udev, USB_PKT_LEN, yld->ctl_data, yld->ctl_dma); |
| 840 | yld->ctl_data, yld->ctl_dma); | 840 | usb_free_coherent(yld->udev, USB_PKT_LEN, yld->irq_data, yld->irq_dma); |
| 841 | usb_buffer_free(yld->udev, USB_PKT_LEN, | ||
| 842 | yld->irq_data, yld->irq_dma); | ||
| 843 | 841 | ||
| 844 | kfree(yld); | 842 | kfree(yld); |
| 845 | return err; | 843 | return err; |
| @@ -884,13 +882,13 @@ static int usb_probe(struct usb_interface *intf, const struct usb_device_id *id) | |||
| 884 | return usb_cleanup(yld, -ENOMEM); | 882 | return usb_cleanup(yld, -ENOMEM); |
| 885 | 883 | ||
| 886 | /* allocate usb buffers */ | 884 | /* allocate usb buffers */ |
| 887 | yld->irq_data = usb_buffer_alloc(udev, USB_PKT_LEN, | 885 | yld->irq_data = usb_alloc_coherent(udev, USB_PKT_LEN, |
| 888 | GFP_ATOMIC, &yld->irq_dma); | 886 | GFP_ATOMIC, &yld->irq_dma); |
| 889 | if (yld->irq_data == NULL) | 887 | if (yld->irq_data == NULL) |
| 890 | return usb_cleanup(yld, -ENOMEM); | 888 | return usb_cleanup(yld, -ENOMEM); |
| 891 | 889 | ||
| 892 | yld->ctl_data = usb_buffer_alloc(udev, USB_PKT_LEN, | 890 | yld->ctl_data = usb_alloc_coherent(udev, USB_PKT_LEN, |
| 893 | GFP_ATOMIC, &yld->ctl_dma); | 891 | GFP_ATOMIC, &yld->ctl_dma); |
| 894 | if (!yld->ctl_data) | 892 | if (!yld->ctl_data) |
| 895 | return usb_cleanup(yld, -ENOMEM); | 893 | return usb_cleanup(yld, -ENOMEM); |
| 896 | 894 | ||
