OSDN Git Service

staging: most: remove macro cpu_to_le16
authorChristian Gromm <christian.gromm@microchip.com>
Mon, 28 Sep 2015 15:18:39 +0000 (17:18 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Sep 2015 01:18:50 +0000 (03:18 +0200)
This patch removes the wrongly used macros cpu_to_le16

Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/hdm-usb/hdm_usb.c

index 3c731da..a9da92f 100644 (file)
@@ -1077,7 +1077,7 @@ static ssize_t store_value(struct most_dci_obj *dci_obj,
                           struct most_dci_attribute *attr,
                           const char *buf, size_t count)
 {
-       u16 v16;
+       u16 val;
        u16 reg_addr;
        int err;
 
@@ -1100,11 +1100,11 @@ static ssize_t store_value(struct most_dci_obj *dci_obj,
        else
                return -EIO;
 
-       err = kstrtou16(buf, 16, &v16);
+       err = kstrtou16(buf, 16, &val);
        if (err)
                return err;
 
-       err = drci_wr_reg(dci_obj->usb_device, reg_addr, cpu_to_le16(v16));
+       err = drci_wr_reg(dci_obj->usb_device, reg_addr, val);
        if (err < 0)
                return err;
 
@@ -1295,7 +1295,7 @@ hdm_probe(struct usb_interface *interface, const struct usb_device_id *id)
                err = drci_wr_reg(usb_dev,
                                  DRCI_REG_BASE + DRCI_COMMAND +
                                  ep_desc->bEndpointAddress * 16,
-                                 cpu_to_le16(1));
+                                 1);
                if (err < 0)
                        pr_warn("DCI Sync for EP %02x failed",
                                ep_desc->bEndpointAddress);