staging: gdm72xx: clean up endianness conversions

This patch cleans up the endianness conversions in the gdm72xx driver:
- Directly use the generic byte-reordering macros for endianness
  conversion instead of some custom-defined macros.
- Convert values on the constant side instead of the variable side when
  appropriate.
- Add endianness annotations.

Signed-off-by: Ben Chan <benchan@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Ben Chan 2014-06-30 23:32:27 -07:00 committed by Greg Kroah-Hartman
parent bbd500d8cd
commit a8a175d9fc
7 changed files with 49 additions and 62 deletions

View File

@ -24,8 +24,6 @@
#include "hci.h" #include "hci.h"
#include "gdm_qos.h" #include "gdm_qos.h"
#define B2H(x) __be16_to_cpu(x)
#define MAX_FREE_LIST_CNT 32 #define MAX_FREE_LIST_CNT 32
static struct { static struct {
struct list_head head; struct list_head head;
@ -266,7 +264,7 @@ int gdm_qos_send_hci_pkt(struct sk_buff *skb, struct net_device *dev)
tcph = (struct tcphdr *)iph + iph->ihl*4; tcph = (struct tcphdr *)iph + iph->ihl*4;
if (B2H(ethh->h_proto) == ETH_P_IP) { if (ethh->h_proto == cpu_to_be16(ETH_P_IP)) {
if (qcb->qos_list_cnt && !qos_free_list.cnt) { if (qcb->qos_list_cnt && !qos_free_list.cnt) {
entry = alloc_qos_entry(); entry = alloc_qos_entry();
entry->skb = skb; entry->skb = skb;

View File

@ -275,8 +275,9 @@ static void send_sdu(struct sdio_func *func, struct tx_cxt *tx)
aggr_len = pos; aggr_len = pos;
hci = (struct hci_s *)(tx->sdu_buf + TYPE_A_HEADER_SIZE); hci = (struct hci_s *)(tx->sdu_buf + TYPE_A_HEADER_SIZE);
hci->cmd_evt = H2B(WIMAX_TX_SDU_AGGR); hci->cmd_evt = cpu_to_be16(WIMAX_TX_SDU_AGGR);
hci->length = H2B(aggr_len - TYPE_A_HEADER_SIZE - HCI_HEADER_SIZE); hci->length = cpu_to_be16(aggr_len - TYPE_A_HEADER_SIZE -
HCI_HEADER_SIZE);
spin_unlock_irqrestore(&tx->lock, flags); spin_unlock_irqrestore(&tx->lock, flags);

View File

@ -36,10 +36,6 @@ MODULE_DEVICE_TABLE(usb, id_table);
#define GDM7205_PADDING 256 #define GDM7205_PADDING 256
#define H2B(x) __cpu_to_be16(x)
#define B2H(x) __be16_to_cpu(x)
#define DB2H(x) __be32_to_cpu(x)
#define DOWNLOAD_CONF_VALUE 0x21 #define DOWNLOAD_CONF_VALUE 0x21
#ifdef CONFIG_WIMAX_GDM72XX_K_MODE #ifdef CONFIG_WIMAX_GDM72XX_K_MODE
@ -541,9 +537,9 @@ static int gdm_usb_probe(struct usb_interface *intf,
bConfigurationValue = usbdev->actconfig->desc.bConfigurationValue; bConfigurationValue = usbdev->actconfig->desc.bConfigurationValue;
/*USB description is set up with Little-Endian*/ /*USB description is set up with Little-Endian*/
idVendor = L2H(usbdev->descriptor.idVendor); idVendor = le16_to_cpu(usbdev->descriptor.idVendor);
idProduct = L2H(usbdev->descriptor.idProduct); idProduct = le16_to_cpu(usbdev->descriptor.idProduct);
bcdDevice = L2H(usbdev->descriptor.bcdDevice); bcdDevice = le16_to_cpu(usbdev->descriptor.bcdDevice);
dev_info(&intf->dev, "Found GDM USB VID = 0x%04x PID = 0x%04x...\n", dev_info(&intf->dev, "Found GDM USB VID = 0x%04x PID = 0x%04x...\n",
idVendor, idProduct); idVendor, idProduct);
@ -626,7 +622,7 @@ static void gdm_usb_disconnect(struct usb_interface *intf)
phy_dev = usb_get_intfdata(intf); phy_dev = usb_get_intfdata(intf);
/*USB description is set up with Little-Endian*/ /*USB description is set up with Little-Endian*/
idProduct = L2H(usbdev->descriptor.idProduct); idProduct = le16_to_cpu(usbdev->descriptor.idProduct);
if (idProduct != EMERGENCY_PID && if (idProduct != EMERGENCY_PID &&
bConfigurationValue != DOWNLOAD_CONF_VALUE && bConfigurationValue != DOWNLOAD_CONF_VALUE &&

View File

@ -166,6 +166,7 @@ static void dump_eth_packet(struct net_device *dev, const char *title,
static inline int gdm_wimax_header(struct sk_buff **pskb) static inline int gdm_wimax_header(struct sk_buff **pskb)
{ {
u16 buf[HCI_HEADER_SIZE / sizeof(u16)]; u16 buf[HCI_HEADER_SIZE / sizeof(u16)];
struct hci_s *hci = (struct hci_s *)buf;
struct sk_buff *skb = *pskb; struct sk_buff *skb = *pskb;
if (unlikely(skb_headroom(skb) < HCI_HEADER_SIZE)) { if (unlikely(skb_headroom(skb) < HCI_HEADER_SIZE)) {
@ -181,8 +182,8 @@ static inline int gdm_wimax_header(struct sk_buff **pskb)
} }
skb_push(skb, HCI_HEADER_SIZE); skb_push(skb, HCI_HEADER_SIZE);
buf[0] = H2B(WIMAX_TX_SDU); hci->cmd_evt = cpu_to_be16(WIMAX_TX_SDU);
buf[1] = H2B(skb->len - HCI_HEADER_SIZE); hci->length = cpu_to_be16(skb->len - HCI_HEADER_SIZE);
memcpy(skb->data, buf, HCI_HEADER_SIZE); memcpy(skb->data, buf, HCI_HEADER_SIZE);
*pskb = skb; *pskb = skb;
@ -409,7 +410,7 @@ static int gdm_wimax_set_config(struct net_device *dev, struct ifmap *map)
static void __gdm_wimax_set_mac_addr(struct net_device *dev, char *mac_addr) static void __gdm_wimax_set_mac_addr(struct net_device *dev, char *mac_addr)
{ {
u16 hci_pkt_buf[32 / sizeof(u16)]; u16 hci_pkt_buf[32 / sizeof(u16)];
u8 *pkt = (u8 *)&hci_pkt_buf[0]; struct hci_s *hci = (struct hci_s *)hci_pkt_buf;
struct nic *nic = netdev_priv(dev); struct nic *nic = netdev_priv(dev);
/* Since dev is registered as a ethernet device, /* Since dev is registered as a ethernet device,
@ -420,13 +421,13 @@ static void __gdm_wimax_set_mac_addr(struct net_device *dev, char *mac_addr)
/* Let lower layer know of this change by sending /* Let lower layer know of this change by sending
* SetInformation(MAC Address) * SetInformation(MAC Address)
*/ */
hci_pkt_buf[0] = H2B(WIMAX_SET_INFO); /* cmd_evt */ hci->cmd_evt = cpu_to_be16(WIMAX_SET_INFO);
hci_pkt_buf[1] = H2B(8); /* size */ hci->length = cpu_to_be16(8);
pkt[4] = 0; /* T */ hci->data[0] = 0; /* T */
pkt[5] = 6; /* L */ hci->data[1] = 6; /* L */
memcpy(pkt + 6, mac_addr, dev->addr_len); /* V */ memcpy(&hci->data[2], mac_addr, dev->addr_len); /* V */
gdm_wimax_send(nic, pkt, HCI_HEADER_SIZE + 8); gdm_wimax_send(nic, hci, HCI_HEADER_SIZE + 8);
} }
/* A driver function */ /* A driver function */
@ -608,6 +609,7 @@ static void gdm_wimax_prepare_device(struct net_device *dev)
struct hci_s *hci = (struct hci_s *)buf; struct hci_s *hci = (struct hci_s *)buf;
u16 len = 0; u16 len = 0;
u32 val = 0; u32 val = 0;
__be32 val_be32;
#define BIT_MULTI_CS 0 #define BIT_MULTI_CS 0
#define BIT_WIMAX 1 #define BIT_WIMAX 1
@ -616,9 +618,9 @@ static void gdm_wimax_prepare_device(struct net_device *dev)
/* GetInformation mac address */ /* GetInformation mac address */
len = 0; len = 0;
hci->cmd_evt = H2B(WIMAX_GET_INFO); hci->cmd_evt = cpu_to_be16(WIMAX_GET_INFO);
hci->data[len++] = TLV_T(T_MAC_ADDRESS); hci->data[len++] = TLV_T(T_MAC_ADDRESS);
hci->length = H2B(len); hci->length = cpu_to_be16(len);
gdm_wimax_send(nic, hci, HCI_HEADER_SIZE+len); gdm_wimax_send(nic, hci, HCI_HEADER_SIZE+len);
val = (1<<BIT_WIMAX) | (1<<BIT_MULTI_CS); val = (1<<BIT_WIMAX) | (1<<BIT_MULTI_CS);
@ -631,16 +633,16 @@ static void gdm_wimax_prepare_device(struct net_device *dev)
/* Set capability */ /* Set capability */
len = 0; len = 0;
hci->cmd_evt = H2B(WIMAX_SET_INFO); hci->cmd_evt = cpu_to_be16(WIMAX_SET_INFO);
hci->data[len++] = TLV_T(T_CAPABILITY); hci->data[len++] = TLV_T(T_CAPABILITY);
hci->data[len++] = TLV_L(T_CAPABILITY); hci->data[len++] = TLV_L(T_CAPABILITY);
val = DH2B(val); val_be32 = cpu_to_be32(val);
memcpy(&hci->data[len], &val, TLV_L(T_CAPABILITY)); memcpy(&hci->data[len], &val_be32, TLV_L(T_CAPABILITY));
len += TLV_L(T_CAPABILITY); len += TLV_L(T_CAPABILITY);
hci->length = H2B(len); hci->length = cpu_to_be16(len);
gdm_wimax_send(nic, hci, HCI_HEADER_SIZE+len); gdm_wimax_send(nic, hci, HCI_HEADER_SIZE+len);
netdev_info(dev, "GDM WiMax Set CAPABILITY: 0x%08X\n", DB2H(val)); netdev_info(dev, "GDM WiMax Set CAPABILITY: 0x%08X\n", val);
} }
static int gdm_wimax_hci_get_tlv(u8 *buf, u8 *T, u16 *L, u8 **V) static int gdm_wimax_hci_get_tlv(u8 *buf, u8 *T, u16 *L, u8 **V)
@ -650,7 +652,7 @@ static int gdm_wimax_hci_get_tlv(u8 *buf, u8 *T, u16 *L, u8 **V)
*T = buf[0]; *T = buf[0];
if (buf[1] == 0x82) { if (buf[1] == 0x82) {
*L = B2H(__U82U16(&buf[2])); *L = be16_to_cpu(__U82U16(&buf[2]));
next_pos = 1/*type*/+3/*len*/; next_pos = 1/*type*/+3/*len*/;
} else { } else {
*L = buf[1]; *L = buf[1];
@ -670,8 +672,8 @@ static int gdm_wimax_get_prepared_info(struct net_device *dev, char *buf,
u16 cmd_evt, cmd_len; u16 cmd_evt, cmd_len;
int pos = HCI_HEADER_SIZE; int pos = HCI_HEADER_SIZE;
cmd_evt = B2H(*(u16 *)&buf[0]); cmd_evt = be16_to_cpup((const __be16 *)&buf[0]);
cmd_len = B2H(*(u16 *)&buf[2]); cmd_len = be16_to_cpup((const __be16 *)&buf[2]);
if (len < cmd_len + HCI_HEADER_SIZE) { if (len < cmd_len + HCI_HEADER_SIZE) {
netdev_err(dev, "%s: invalid length [%d/%d]\n", __func__, netdev_err(dev, "%s: invalid length [%d/%d]\n", __func__,
@ -744,13 +746,13 @@ static void gdm_wimax_transmit_aggr_pkt(struct net_device *dev, char *buf,
while (len > 0) { while (len > 0) {
hci = (struct hci_s *)buf; hci = (struct hci_s *)buf;
if (B2H(hci->cmd_evt) != WIMAX_RX_SDU) { if (hci->cmd_evt != cpu_to_be16(WIMAX_RX_SDU)) {
netdev_err(dev, "Wrong cmd_evt(0x%04X)\n", netdev_err(dev, "Wrong cmd_evt(0x%04X)\n",
B2H(hci->cmd_evt)); be16_to_cpu(hci->cmd_evt));
break; break;
} }
length = B2H(hci->length); length = be16_to_cpu(hci->length);
gdm_wimax_netif_rx(dev, hci->data, length); gdm_wimax_netif_rx(dev, hci->data, length);
if (length & 0x3) { if (length & 0x3) {
@ -775,8 +777,8 @@ static void gdm_wimax_transmit_pkt(struct net_device *dev, char *buf, int len)
if (len == 0) if (len == 0)
return; return;
cmd_evt = B2H(*(u16 *)&buf[0]); cmd_evt = be16_to_cpup((const __be16 *)&buf[0]);
cmd_len = B2H(*(u16 *)&buf[2]); cmd_len = be16_to_cpup((const __be16 *)&buf[2]);
if (len < cmd_len + HCI_HEADER_SIZE) { if (len < cmd_len + HCI_HEADER_SIZE) {
if (len) if (len)
@ -816,14 +818,14 @@ static void gdm_wimax_transmit_pkt(struct net_device *dev, char *buf, int len)
static void gdm_wimax_ind_fsm_update(struct net_device *dev, struct fsm_s *fsm) static void gdm_wimax_ind_fsm_update(struct net_device *dev, struct fsm_s *fsm)
{ {
u16 buf[32 / sizeof(u16)]; u16 buf[32 / sizeof(u16)];
u8 *hci_pkt_buf = (u8 *)&buf[0]; struct hci_s *hci = (struct hci_s *)buf;
/* Indicate updating fsm */ /* Indicate updating fsm */
buf[0] = H2B(WIMAX_FSM_UPDATE); hci->cmd_evt = cpu_to_be16(WIMAX_FSM_UPDATE);
buf[1] = H2B(sizeof(struct fsm_s)); hci->length = cpu_to_be16(sizeof(struct fsm_s));
memcpy(&hci_pkt_buf[HCI_HEADER_SIZE], fsm, sizeof(struct fsm_s)); memcpy(&hci->data[0], fsm, sizeof(struct fsm_s));
gdm_wimax_event_send(dev, hci_pkt_buf, gdm_wimax_event_send(dev, (char *)hci,
HCI_HEADER_SIZE + sizeof(struct fsm_s)); HCI_HEADER_SIZE + sizeof(struct fsm_s));
} }
@ -836,8 +838,8 @@ static void gdm_wimax_ind_if_updown(struct net_device *dev, int if_up)
up_down = if_up ? WIMAX_IF_UP : WIMAX_IF_DOWN; up_down = if_up ? WIMAX_IF_UP : WIMAX_IF_DOWN;
/* Indicate updating fsm */ /* Indicate updating fsm */
hci->cmd_evt = H2B(WIMAX_IF_UPDOWN); hci->cmd_evt = cpu_to_be16(WIMAX_IF_UPDOWN);
hci->length = H2B(sizeof(up_down)); hci->length = cpu_to_be16(sizeof(up_down));
hci->data[0] = up_down; hci->data[0] = up_down;
gdm_wimax_event_send(dev, (char *)hci, HCI_HEADER_SIZE+sizeof(up_down)); gdm_wimax_event_send(dev, (char *)hci, HCI_HEADER_SIZE+sizeof(up_down));

View File

@ -23,16 +23,6 @@
#define DRIVER_VERSION "3.2.3" #define DRIVER_VERSION "3.2.3"
#define H2L(x) __cpu_to_le16(x)
#define L2H(x) __le16_to_cpu(x)
#define DH2L(x) __cpu_to_le32(x)
#define DL2H(x) __le32_to_cpu(x)
#define H2B(x) __cpu_to_be16(x)
#define B2H(x) __be16_to_cpu(x)
#define DH2B(x) __cpu_to_be32(x)
#define DB2H(x) __be32_to_cpu(x)
struct phy_dev { struct phy_dev {
void *priv_dev; void *priv_dev;
struct net_device *netdev; struct net_device *netdev;

View File

@ -199,9 +199,9 @@
#define T_DUPLEX_MODE (0xdb | (4 << 16)) #define T_DUPLEX_MODE (0xdb | (4 << 16))
struct hci_s { struct hci_s {
unsigned short cmd_evt; __be16 cmd_evt;
unsigned short length; __be16 length;
unsigned char data[0]; u8 data[0];
} __packed; } __packed;
#endif /* __GDM72XX_HCI_H__ */ #endif /* __GDM72XX_HCI_H__ */

View File

@ -36,8 +36,8 @@
#define FW_FS "ramdisk.jffs2" #define FW_FS "ramdisk.jffs2"
struct dn_header { struct dn_header {
u32 magic_num; __be32 magic_num;
u32 file_size; __be32 file_size;
}; };
struct img_header { struct img_header {
@ -69,7 +69,7 @@ static void array_le32_to_cpu(u32 *arr, int num)
int i; int i;
for (i = 0; i < num; i++, arr++) for (i = 0; i < num; i++, arr++)
*arr = __le32_to_cpu(*arr); le32_to_cpus(arr);
} }
static u8 *tx_buf; static u8 *tx_buf;
@ -115,8 +115,8 @@ static int download_image(struct usb_device *usbdev,
u32 size; u32 size;
size = ALIGN(img_len, DOWNLOAD_SIZE); size = ALIGN(img_len, DOWNLOAD_SIZE);
h.magic_num = __cpu_to_be32(magic_num); h.magic_num = cpu_to_be32(magic_num);
h.file_size = __cpu_to_be32(size); h.file_size = cpu_to_be32(size);
ret = gdm_wibro_send(usbdev, &h, sizeof(h)); ret = gdm_wibro_send(usbdev, &h, sizeof(h));
if (ret < 0) if (ret < 0)