staging/ozwpan: coding style __constant_
This fixes the following issues detected by checkpatch.pl: WARNING: __constant_cpu_to_le16 should be cpu_to_le16 #1991: FILE: drivers/staging/ozwpan/ozhcd.c:1991: + __constant_cpu_to_le16(0x0001); WARNING: __constant_cpu_to_le32 should be cpu_to_le32 #2185: FILE: drivers/staging/ozwpan/ozhcd.c:2185: + put_unaligned(__constant_cpu_to_le32(0), (__le32 *)buf); WARNING: __constant_htons should be htons #675: FILE: drivers/staging/ozwpan/ozproto.c:675: + binding->ptype.type = __constant_htons(OZ_ETHERTYPE); Signed-off-by: Jerome Pinot <ngc891@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9b6f0c4b98
commit
c632824ef2
@ -1986,8 +1986,7 @@ static void oz_get_hub_descriptor(struct usb_hcd *hcd,
|
|||||||
memset(desc, 0, sizeof(*desc));
|
memset(desc, 0, sizeof(*desc));
|
||||||
desc->bDescriptorType = 0x29;
|
desc->bDescriptorType = 0x29;
|
||||||
desc->bDescLength = 9;
|
desc->bDescLength = 9;
|
||||||
desc->wHubCharacteristics = (__force __u16)
|
desc->wHubCharacteristics = (__force __u16)cpu_to_le16(0x0001);
|
||||||
__constant_cpu_to_le16(0x0001);
|
|
||||||
desc->bNbrPorts = OZ_NB_PORTS;
|
desc->bNbrPorts = OZ_NB_PORTS;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2181,7 +2180,7 @@ static int oz_hcd_hub_control(struct usb_hcd *hcd, u16 req_type, u16 wvalue,
|
|||||||
break;
|
break;
|
||||||
case GetHubStatus:
|
case GetHubStatus:
|
||||||
oz_dbg(HUB, "GetHubStatus: req_type = 0x%x\n", req_type);
|
oz_dbg(HUB, "GetHubStatus: req_type = 0x%x\n", req_type);
|
||||||
put_unaligned(__constant_cpu_to_le32(0), (__le32 *)buf);
|
put_unaligned(cpu_to_le32(0), (__le32 *)buf);
|
||||||
break;
|
break;
|
||||||
case GetPortStatus:
|
case GetPortStatus:
|
||||||
err = oz_get_port_status(hcd, windex, buf);
|
err = oz_get_port_status(hcd, windex, buf);
|
||||||
|
@ -672,7 +672,7 @@ void oz_binding_add(const char *net_dev)
|
|||||||
if (!binding)
|
if (!binding)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
binding->ptype.type = __constant_htons(OZ_ETHERTYPE);
|
binding->ptype.type = htons(OZ_ETHERTYPE);
|
||||||
binding->ptype.func = oz_pkt_recv;
|
binding->ptype.func = oz_pkt_recv;
|
||||||
if (net_dev && *net_dev) {
|
if (net_dev && *net_dev) {
|
||||||
memcpy(binding->name, net_dev, OZ_MAX_BINDING_LEN);
|
memcpy(binding->name, net_dev, OZ_MAX_BINDING_LEN);
|
||||||
|
Loading…
Reference in New Issue
Block a user