Commit 8db36563 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

Staging: gdm724x: LTE: Fix trailing open parentheses.

Fix lines with a trailing open parenthesis, which is a coding style issue.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7afe031c
...@@ -185,6 +185,7 @@ static __sum16 icmp6_checksum(struct ipv6hdr *ipv6, u16 *ptr, int len) ...@@ -185,6 +185,7 @@ static __sum16 icmp6_checksum(struct ipv6hdr *ipv6, u16 *ptr, int len)
unsigned short *w = ptr; unsigned short *w = ptr;
__wsum sum = 0; __wsum sum = 0;
int i; int i;
u16 pa;
union { union {
struct { struct {
...@@ -204,9 +205,10 @@ static __sum16 icmp6_checksum(struct ipv6hdr *ipv6, u16 *ptr, int len) ...@@ -204,9 +205,10 @@ static __sum16 icmp6_checksum(struct ipv6hdr *ipv6, u16 *ptr, int len)
pseudo_header.ph.ph_nxt = ipv6->nexthdr; pseudo_header.ph.ph_nxt = ipv6->nexthdr;
w = (u16 *)&pseudo_header; w = (u16 *)&pseudo_header;
for (i = 0; i < ARRAY_SIZE(pseudo_header.pa); i++) for (i = 0; i < ARRAY_SIZE(pseudo_header.pa); i++) {
sum = csum_add(sum, csum_unfold( pa = pseudo_header.pa[i];
(__force __sum16)pseudo_header.pa[i])); sum = csum_add(sum, csum_unfold((__force __sum16)pa));
}
w = ptr; w = ptr;
while (len > 1) { while (len > 1) {
...@@ -509,8 +511,9 @@ static struct net_device_stats *gdm_lte_stats(struct net_device *dev) ...@@ -509,8 +511,9 @@ static struct net_device_stats *gdm_lte_stats(struct net_device *dev)
static int gdm_lte_event_send(struct net_device *dev, char *buf, int len) static int gdm_lte_event_send(struct net_device *dev, char *buf, int len)
{ {
struct nic *nic = netdev_priv(dev); struct phy_dev *phy_dev = ((struct nic *)netdev_priv(dev))->phy_dev;
struct hci_packet *hci = (struct hci_packet *)buf; struct hci_packet *hci = (struct hci_packet *)buf;
int length;
int idx; int idx;
int ret; int ret;
...@@ -518,11 +521,9 @@ static int gdm_lte_event_send(struct net_device *dev, char *buf, int len) ...@@ -518,11 +521,9 @@ static int gdm_lte_event_send(struct net_device *dev, char *buf, int len)
if (ret != 1) if (ret != 1)
return -EINVAL; return -EINVAL;
return netlink_send(lte_event.sock, idx, 0, buf, length = gdm_dev16_to_cpu(phy_dev->get_endian(phy_dev->priv_dev),
gdm_dev16_to_cpu( hci->len) + HCI_HEADER_SIZE;
nic->phy_dev->get_endian( return netlink_send(lte_event.sock, idx, 0, buf, length);
nic->phy_dev->priv_dev), hci->len)
+ HCI_HEADER_SIZE);
} }
static void gdm_lte_event_rcv(struct net_device *dev, u16 type, static void gdm_lte_event_rcv(struct net_device *dev, u16 type,
...@@ -731,15 +732,13 @@ static void gdm_lte_pdn_table(struct net_device *dev, char *buf, int len) ...@@ -731,15 +732,13 @@ static void gdm_lte_pdn_table(struct net_device *dev, char *buf, int len)
struct hci_pdn_table_ind *pdn_table = (struct hci_pdn_table_ind *)buf; struct hci_pdn_table_ind *pdn_table = (struct hci_pdn_table_ind *)buf;
if (pdn_table->activate) { if (pdn_table->activate) {
struct gdm_endian *ed;
nic->pdn_table.activate = pdn_table->activate; nic->pdn_table.activate = pdn_table->activate;
nic->pdn_table.dft_eps_id = gdm_dev32_to_cpu(
nic->phy_dev->get_endian( ed = nic->phy_dev->get_endian(nic->phy_dev->priv_dev);
nic->phy_dev->priv_dev), nic->pdn_table.dft_eps_id = gdm_dev32_to_cpu(ed, pdn_table->dft_eps_id);
pdn_table->dft_eps_id); nic->pdn_table.nic_type = gdm_dev32_to_cpu(ed, pdn_table->nic_type);
nic->pdn_table.nic_type = gdm_dev32_to_cpu(
nic->phy_dev->get_endian(
nic->phy_dev->priv_dev),
pdn_table->nic_type);
netdev_info(dev, "pdn activated, nic_type=0x%x\n", netdev_info(dev, "pdn activated, nic_type=0x%x\n",
nic->pdn_table.nic_type); nic->pdn_table.nic_type);
...@@ -897,12 +896,11 @@ int register_lte_device(struct phy_dev *phy_dev, ...@@ -897,12 +896,11 @@ int register_lte_device(struct phy_dev *phy_dev,
nic->phy_dev = phy_dev; nic->phy_dev = phy_dev;
nic->nic_id = index; nic->nic_id = index;
form_mac_address( form_mac_address(net->dev_addr,
net->dev_addr, nic->src_mac_addr,
nic->src_mac_addr, nic->dest_mac_addr,
nic->dest_mac_addr, mac_address,
mac_address, index);
index);
SET_NETDEV_DEV(net, dev); SET_NETDEV_DEV(net, dev);
SET_NETDEV_DEVTYPE(net, &wwan_type); SET_NETDEV_DEVTYPE(net, &wwan_type);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment