From: Christian Gromm Date: Mon, 28 Sep 2015 15:18:39 +0000 (+0200) Subject: staging: most: remove macro cpu_to_le16 X-Git-Tag: KARO-TX6UL-2015-11-03~34^2~1762 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f1b9a84382045b693b28d7dce1b2af45b435bbe9;p=karo-tx-linux.git staging: most: remove macro cpu_to_le16 This patch removes the wrongly used macros cpu_to_le16 Signed-off-by: Christian Gromm Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/most/hdm-usb/hdm_usb.c b/drivers/staging/most/hdm-usb/hdm_usb.c index 3c731dac9709..a9da92f14b24 100644 --- a/drivers/staging/most/hdm-usb/hdm_usb.c +++ b/drivers/staging/most/hdm-usb/hdm_usb.c @@ -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);