[PATCH] staging: emxx_udc: Replace __constant_cpu_to_le16 with cpu_to_le16

Daniel Baluta daniel.baluta at gmail.com
Thu Sep 18 20:57:33 EEST 2014


Looks good!

On Tue, Sep 16, 2014 at 11:35 PM, Roberta Dobrescu
<roberta.dobrescu at gmail.com> wrote:
> This fixes the following checkpatch.pl warnings:
> WARNING: __constant_cpu_to_le16 should be cpu_to_le16
>
> Signed-off-by: Roberta Dobrescu <roberta.dobrescu at gmail.com>
> ---
>  drivers/staging/emxx_udc/emxx_udc.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
> index ef956df..c532965 100644
> --- a/drivers/staging/emxx_udc/emxx_udc.c
> +++ b/drivers/staging/emxx_udc/emxx_udc.c
> @@ -1404,13 +1404,13 @@ static void _nbu2ss_set_endpoint_stall(
>  static struct usb_device_descriptor device_desc = {
>         .bLength              = sizeof(device_desc),
>         .bDescriptorType      = USB_DT_DEVICE,
> -       .bcdUSB               = __constant_cpu_to_le16(0x0200),
> +       .bcdUSB               = cpu_to_le16(0x0200),
>         .bDeviceClass         = USB_CLASS_VENDOR_SPEC,
>         .bDeviceSubClass      = 0x00,
>         .bDeviceProtocol      = 0x00,
>         .bMaxPacketSize0      = 64,
> -       .idVendor             = __constant_cpu_to_le16 (0x0409),
> -       .idProduct            = __constant_cpu_to_le16 (0xfff0),
> +       .idVendor             = cpu_to_le16 (0x0409),
> +       .idProduct            = cpu_to_le16 (0xfff0),
>         .bcdDevice            = 0xffff,
>         .iManufacturer        = 0x00,
>         .iProduct             = 0x00,
> --
> 1.9.1
>
>


More information about the firefly mailing list