* [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo>
@ 2014-03-12 17:22 Joe Perches
2014-03-12 17:22 ` [PATCH net-next 1/9] brocade: " Joe Perches
` (8 more replies)
0 siblings, 9 replies; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: linux-kernel, e1000-devel, linux-arm-kernel, linux-usb,
linux-wireless, ath9k-devel
Joe Perches (9):
brocade: Convert uses of __constant_<foo> to <foo>
e100: Convert uses of __constant_<foo> to <foo>
igb: Convert uses of __constant_<foo> to <foo>
igbvf: Convert uses of __constant_<foo> to <foo>
ixgbe: Convert uses of __constant_<foo> to <foo>
ixgbevf: Convert uses of __constant_<foo> to <foo>
xilinx: Convert uses of __constant_<foo> to <foo>
lg-vl600: Convert uses of __constant_<foo> to <foo>
ath9k: Convert uses of __constant_<foo> to <foo>
drivers/net/ethernet/brocade/bna/bnad.c | 16 +++++-------
drivers/net/ethernet/intel/e100.c | 4 +--
drivers/net/ethernet/intel/igb/igb_main.c | 12 ++++-----
drivers/net/ethernet/intel/igbvf/netdev.c | 4 +--
drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c | 8 +++---
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 30 +++++++++++------------
drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 4 +--
drivers/net/ethernet/xilinx/ll_temac_main.c | 4 +--
drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 2 +-
drivers/net/usb/lg-vl600.c | 2 +-
drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 4 +--
11 files changed, 43 insertions(+), 47 deletions(-)
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply [flat|nested] 24+ messages in thread
* [PATCH net-next 1/9] brocade: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:30 ` David Miller
2014-03-12 17:22 ` [PATCH net-next 2/9] e100: " Joe Perches
` (7 subsequent siblings)
8 siblings, 1 reply; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev; +Cc: Rasesh Mody, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ethernet/brocade/bna/bnad.c | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/drivers/net/ethernet/brocade/bna/bnad.c b/drivers/net/ethernet/brocade/bna/bnad.c
index aeec9cc..cb76253 100644
--- a/drivers/net/ethernet/brocade/bna/bnad.c
+++ b/drivers/net/ethernet/brocade/bna/bnad.c
@@ -2845,13 +2845,11 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb,
}
if (unlikely((gso_size + skb_transport_offset(skb) +
tcp_hdrlen(skb)) >= skb->len)) {
- txqent->hdr.wi.opcode =
- __constant_htons(BNA_TXQ_WI_SEND);
+ txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND);
txqent->hdr.wi.lso_mss = 0;
BNAD_UPDATE_CTR(bnad, tx_skb_tso_too_short);
} else {
- txqent->hdr.wi.opcode =
- __constant_htons(BNA_TXQ_WI_SEND_LSO);
+ txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND_LSO);
txqent->hdr.wi.lso_mss = htons(gso_size);
}
@@ -2865,7 +2863,7 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb,
htons(BNA_TXQ_WI_L4_HDR_N_OFFSET(
tcp_hdrlen(skb) >> 2, skb_transport_offset(skb)));
} else {
- txqent->hdr.wi.opcode = __constant_htons(BNA_TXQ_WI_SEND);
+ txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND);
txqent->hdr.wi.lso_mss = 0;
if (unlikely(skb->len > (bnad->netdev->mtu + ETH_HLEN))) {
@@ -2876,11 +2874,10 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb,
if (skb->ip_summed == CHECKSUM_PARTIAL) {
u8 proto = 0;
- if (skb->protocol == __constant_htons(ETH_P_IP))
+ if (skb->protocol == htons(ETH_P_IP))
proto = ip_hdr(skb)->protocol;
#ifdef NETIF_F_IPV6_CSUM
- else if (skb->protocol ==
- __constant_htons(ETH_P_IPV6)) {
+ else if (skb->protocol == htons(ETH_P_IPV6)) {
/* nexthdr may not be TCP immediately. */
proto = ipv6_hdr(skb)->nexthdr;
}
@@ -3062,8 +3059,7 @@ bnad_start_xmit(struct sk_buff *skb, struct net_device *netdev)
vect_id = 0;
BNA_QE_INDX_INC(prod, q_depth);
txqent = &((struct bna_txq_entry *)tcb->sw_q)[prod];
- txqent->hdr.wi_ext.opcode =
- __constant_htons(BNA_TXQ_WI_EXTENSION);
+ txqent->hdr.wi_ext.opcode = htons(BNA_TXQ_WI_EXTENSION);
unmap = &unmap_q[prod];
}
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 2/9] e100: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
2014-03-12 17:22 ` [PATCH net-next 1/9] brocade: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:30 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 3/9] igb: " Joe Perches
` (6 subsequent siblings)
8 siblings, 2 replies; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ethernet/intel/e100.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/intel/e100.c b/drivers/net/ethernet/intel/e100.c
index bf7a01e..b56461c 100644
--- a/drivers/net/ethernet/intel/e100.c
+++ b/drivers/net/ethernet/intel/e100.c
@@ -1778,9 +1778,9 @@ static int e100_xmit_prepare(struct nic *nic, struct cb *cb,
* testing, ie sending frames with bad CRC.
*/
if (unlikely(skb->no_fcs))
- cb->command |= __constant_cpu_to_le16(cb_tx_nc);
+ cb->command |= cpu_to_le16(cb_tx_nc);
else
- cb->command &= ~__constant_cpu_to_le16(cb_tx_nc);
+ cb->command &= ~cpu_to_le16(cb_tx_nc);
/* interrupt every 16 packets regardless of delay */
if ((nic->cbs_avail & ~15) == nic->cbs_avail)
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 3/9] igb: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
2014-03-12 17:22 ` [PATCH net-next 1/9] brocade: " Joe Perches
2014-03-12 17:22 ` [PATCH net-next 2/9] e100: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:30 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 4/9] igbvf: " Joe Perches
` (5 subsequent siblings)
8 siblings, 2 replies; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ethernet/intel/igb/igb_main.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index 3384156..5476e25 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -4546,7 +4546,7 @@ static int igb_tso(struct igb_ring *tx_ring,
/* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
type_tucmd = E1000_ADVTXD_TUCMD_L4T_TCP;
- if (first->protocol == __constant_htons(ETH_P_IP)) {
+ if (first->protocol == htons(ETH_P_IP)) {
struct iphdr *iph = ip_hdr(skb);
iph->tot_len = 0;
iph->check = 0;
@@ -4602,12 +4602,12 @@ static void igb_tx_csum(struct igb_ring *tx_ring, struct igb_tx_buffer *first)
} else {
u8 l4_hdr = 0;
switch (first->protocol) {
- case __constant_htons(ETH_P_IP):
+ case htons(ETH_P_IP):
vlan_macip_lens |= skb_network_header_len(skb);
type_tucmd |= E1000_ADVTXD_TUCMD_IPV4;
l4_hdr = ip_hdr(skb)->protocol;
break;
- case __constant_htons(ETH_P_IPV6):
+ case htons(ETH_P_IPV6):
vlan_macip_lens |= skb_network_header_len(skb);
l4_hdr = ipv6_hdr(skb)->nexthdr;
break;
@@ -6690,7 +6690,7 @@ static unsigned int igb_get_headlen(unsigned char *data,
hdr.network += ETH_HLEN;
/* handle any vlan tag if present */
- if (protocol == __constant_htons(ETH_P_8021Q)) {
+ if (protocol == htons(ETH_P_8021Q)) {
if ((hdr.network - data) > (max_len - VLAN_HLEN))
return max_len;
@@ -6699,7 +6699,7 @@ static unsigned int igb_get_headlen(unsigned char *data,
}
/* handle L3 protocols */
- if (protocol == __constant_htons(ETH_P_IP)) {
+ if (protocol == htons(ETH_P_IP)) {
if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
return max_len;
@@ -6713,7 +6713,7 @@ static unsigned int igb_get_headlen(unsigned char *data,
/* record next protocol if header is present */
if (!(hdr.ipv4->frag_off & htons(IP_OFFSET)))
nexthdr = hdr.ipv4->protocol;
- } else if (protocol == __constant_htons(ETH_P_IPV6)) {
+ } else if (protocol == htons(ETH_P_IPV6)) {
if ((hdr.network - data) > (max_len - sizeof(struct ipv6hdr)))
return max_len;
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 4/9] igbvf: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
` (2 preceding siblings ...)
2014-03-12 17:22 ` [PATCH net-next 3/9] igb: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 5/9] ixgbe: " Joe Perches
` (4 subsequent siblings)
8 siblings, 2 replies; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ethernet/intel/igbvf/netdev.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/intel/igbvf/netdev.c b/drivers/net/ethernet/intel/igbvf/netdev.c
index e2c6d80..b7ab03a 100644
--- a/drivers/net/ethernet/intel/igbvf/netdev.c
+++ b/drivers/net/ethernet/intel/igbvf/netdev.c
@@ -2014,12 +2014,12 @@ static inline bool igbvf_tx_csum(struct igbvf_adapter *adapter,
if (skb->ip_summed == CHECKSUM_PARTIAL) {
switch (skb->protocol) {
- case __constant_htons(ETH_P_IP):
+ case htons(ETH_P_IP):
tu_cmd |= E1000_ADVTXD_TUCMD_IPV4;
if (ip_hdr(skb)->protocol == IPPROTO_TCP)
tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
break;
- case __constant_htons(ETH_P_IPV6):
+ case htons(ETH_P_IPV6):
if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
break;
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 5/9] ixgbe: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
` (3 preceding siblings ...)
2014-03-12 17:22 ` [PATCH net-next 4/9] igbvf: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 6/9] ixgbevf: " Joe Perches
` (3 subsequent siblings)
8 siblings, 2 replies; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c | 8 +++----
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 30 +++++++++++++--------------
2 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c
index f58db45..5564331 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c
@@ -407,13 +407,13 @@ int ixgbe_fcoe_ddp(struct ixgbe_adapter *adapter,
switch (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_STAT_FCSTAT)) {
/* return 0 to bypass going to ULD for DDPed data */
- case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_DDP):
+ case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_DDP):
/* update length of DDPed data */
ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
rc = 0;
break;
/* unmap the sg list when FCPRSP is received */
- case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_FCPRSP):
+ case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_FCPRSP):
dma_unmap_sg(&adapter->pdev->dev, ddp->sgl,
ddp->sgc, DMA_FROM_DEVICE);
ddp->err = ddp_err;
@@ -421,14 +421,14 @@ int ixgbe_fcoe_ddp(struct ixgbe_adapter *adapter,
ddp->sgc = 0;
/* fall through */
/* if DDP length is present pass it through to ULD */
- case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NODDP):
+ case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NODDP):
/* update length of DDPed data */
ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
if (ddp->len)
rc = ddp->len;
break;
/* no match will return as an error */
- case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NOMTCH):
+ case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NOMTCH):
default:
break;
}
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
index 10b35d8..20d2519 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
@@ -1527,7 +1527,7 @@ static unsigned int ixgbe_get_headlen(unsigned char *data,
hdr.network += ETH_HLEN;
/* handle any vlan tag if present */
- if (protocol == __constant_htons(ETH_P_8021Q)) {
+ if (protocol == htons(ETH_P_8021Q)) {
if ((hdr.network - data) > (max_len - VLAN_HLEN))
return max_len;
@@ -1536,7 +1536,7 @@ static unsigned int ixgbe_get_headlen(unsigned char *data,
}
/* handle L3 protocols */
- if (protocol == __constant_htons(ETH_P_IP)) {
+ if (protocol == htons(ETH_P_IP)) {
if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
return max_len;
@@ -1550,7 +1550,7 @@ static unsigned int ixgbe_get_headlen(unsigned char *data,
/* record next protocol if header is present */
if (!(hdr.ipv4->frag_off & htons(IP_OFFSET)))
nexthdr = hdr.ipv4->protocol;
- } else if (protocol == __constant_htons(ETH_P_IPV6)) {
+ } else if (protocol == htons(ETH_P_IPV6)) {
if ((hdr.network - data) > (max_len - sizeof(struct ipv6hdr)))
return max_len;
@@ -1558,7 +1558,7 @@ static unsigned int ixgbe_get_headlen(unsigned char *data,
nexthdr = hdr.ipv6->nexthdr;
hlen = sizeof(struct ipv6hdr);
#ifdef IXGBE_FCOE
- } else if (protocol == __constant_htons(ETH_P_FCOE)) {
+ } else if (protocol == htons(ETH_P_FCOE)) {
if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
return max_len;
hlen = FCOE_HEADER_LEN;
@@ -6508,7 +6508,7 @@ static int ixgbe_tso(struct ixgbe_ring *tx_ring,
/* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
- if (first->protocol == __constant_htons(ETH_P_IP)) {
+ if (first->protocol == htons(ETH_P_IP)) {
struct iphdr *iph = ip_hdr(skb);
iph->tot_len = 0;
iph->check = 0;
@@ -6568,12 +6568,12 @@ static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
} else {
u8 l4_hdr = 0;
switch (first->protocol) {
- case __constant_htons(ETH_P_IP):
+ case htons(ETH_P_IP):
vlan_macip_lens |= skb_network_header_len(skb);
type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
l4_hdr = ip_hdr(skb)->protocol;
break;
- case __constant_htons(ETH_P_IPV6):
+ case htons(ETH_P_IPV6):
vlan_macip_lens |= skb_network_header_len(skb);
l4_hdr = ipv6_hdr(skb)->nexthdr;
break;
@@ -6848,9 +6848,9 @@ static void ixgbe_atr(struct ixgbe_ring *ring,
hdr.network = skb_network_header(first->skb);
/* Currently only IPv4/IPv6 with TCP is supported */
- if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
+ if ((first->protocol != htons(ETH_P_IPV6) ||
hdr.ipv6->nexthdr != IPPROTO_TCP) &&
- (first->protocol != __constant_htons(ETH_P_IP) ||
+ (first->protocol != htons(ETH_P_IP) ||
hdr.ipv4->protocol != IPPROTO_TCP))
return;
@@ -6883,12 +6883,12 @@ static void ixgbe_atr(struct ixgbe_ring *ring,
* and write the value to source port portion of compressed dword
*/
if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
- common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
+ common.port.src ^= th->dest ^ htons(ETH_P_8021Q);
else
common.port.src ^= th->dest ^ first->protocol;
common.port.dst ^= th->source;
- if (first->protocol == __constant_htons(ETH_P_IP)) {
+ if (first->protocol == htons(ETH_P_IP)) {
input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
} else {
@@ -6954,8 +6954,8 @@ static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb,
* or FIP and we have FCoE enabled on the adapter
*/
switch (vlan_get_protocol(skb)) {
- case __constant_htons(ETH_P_FCOE):
- case __constant_htons(ETH_P_FIP):
+ case htons(ETH_P_FCOE):
+ case htons(ETH_P_FIP):
adapter = netdev_priv(dev);
if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
@@ -7016,7 +7016,7 @@ netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
/* else if it is a SW VLAN check the next protocol and store the tag */
- } else if (protocol == __constant_htons(ETH_P_8021Q)) {
+ } else if (protocol == htons(ETH_P_8021Q)) {
struct vlan_hdr *vhdr, _vhdr;
vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
if (!vhdr)
@@ -7075,7 +7075,7 @@ netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
#ifdef IXGBE_FCOE
/* setup tx offload for FCoE */
- if ((protocol == __constant_htons(ETH_P_FCOE)) &&
+ if ((protocol == htons(ETH_P_FCOE)) &&
(tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
tso = ixgbe_fso(tx_ring, first, &hdr_len);
if (tso < 0)
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 6/9] ixgbevf: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
` (4 preceding siblings ...)
2014-03-12 17:22 ` [PATCH net-next 5/9] ixgbe: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 20:51 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 7/9] xilinx: " Joe Perches
` (2 subsequent siblings)
8 siblings, 2 replies; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
index 6ac5da2..be56a9e 100644
--- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
+++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
@@ -2851,12 +2851,12 @@ static void ixgbevf_tx_csum(struct ixgbevf_ring *tx_ring,
if (skb->ip_summed == CHECKSUM_PARTIAL) {
u8 l4_hdr = 0;
switch (skb->protocol) {
- case __constant_htons(ETH_P_IP):
+ case htons(ETH_P_IP):
vlan_macip_lens |= skb_network_header_len(skb);
type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
l4_hdr = ip_hdr(skb)->protocol;
break;
- case __constant_htons(ETH_P_IPV6):
+ case htons(ETH_P_IPV6):
vlan_macip_lens |= skb_network_header_len(skb);
l4_hdr = ipv6_hdr(skb)->nexthdr;
break;
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 7/9] xilinx: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
` (5 preceding siblings ...)
2014-03-12 17:22 ` [PATCH net-next 6/9] ixgbevf: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 17:22 ` [PATCH net-next 8/9] lg-vl600: " Joe Perches
2014-03-12 17:22 ` [PATCH net-next 9/9] ath9k: " Joe Perches
8 siblings, 1 reply; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: Michal Simek, Anirudha Sarangi, John Linn, linux-arm-kernel,
linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ethernet/xilinx/ll_temac_main.c | 4 ++--
drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/xilinx/ll_temac_main.c b/drivers/net/ethernet/xilinx/ll_temac_main.c
index a434750..fa193c4 100644
--- a/drivers/net/ethernet/xilinx/ll_temac_main.c
+++ b/drivers/net/ethernet/xilinx/ll_temac_main.c
@@ -771,8 +771,8 @@ static void ll_temac_recv(struct net_device *ndev)
/* if we're doing rx csum offload, set it up */
if (((lp->temac_features & TEMAC_FEATURE_RX_CSUM) != 0) &&
- (skb->protocol == __constant_htons(ETH_P_IP)) &&
- (skb->len > 64)) {
+ (skb->protocol == htons(ETH_P_IP)) &&
+ (skb->len > 64)) {
skb->csum = cur_p->app3 & 0xFFFF;
skb->ip_summed = CHECKSUM_COMPLETE;
diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
index 4bfdf8c..7b0a735 100644
--- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
+++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
@@ -756,7 +756,7 @@ static void axienet_recv(struct net_device *ndev)
skb->ip_summed = CHECKSUM_UNNECESSARY;
}
} else if ((lp->features & XAE_FEATURE_PARTIAL_RX_CSUM) != 0 &&
- skb->protocol == __constant_htons(ETH_P_IP) &&
+ skb->protocol == htons(ETH_P_IP) &&
skb->len > 64) {
skb->csum = be32_to_cpu(cur_p->app3 & 0xFFFF);
skb->ip_summed = CHECKSUM_COMPLETE;
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 8/9] lg-vl600: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
` (6 preceding siblings ...)
2014-03-12 17:22 ` [PATCH net-next 7/9] xilinx: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 17:22 ` [PATCH net-next 9/9] ath9k: " Joe Perches
8 siblings, 1 reply; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev; +Cc: linux-usb, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/usb/lg-vl600.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/usb/lg-vl600.c b/drivers/net/usb/lg-vl600.c
index acfcc32..8f37efd 100644
--- a/drivers/net/usb/lg-vl600.c
+++ b/drivers/net/usb/lg-vl600.c
@@ -210,7 +210,7 @@ static int vl600_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
* (0x86dd) so Linux can understand it.
*/
if ((buf->data[sizeof(*ethhdr)] & 0xf0) == 0x60)
- ethhdr->h_proto = __constant_htons(ETH_P_IPV6);
+ ethhdr->h_proto = htons(ETH_P_IPV6);
}
if (count) {
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH net-next 9/9] ath9k: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
` (7 preceding siblings ...)
2014-03-12 17:22 ` [PATCH net-next 8/9] lg-vl600: " Joe Perches
@ 2014-03-12 17:22 ` Joe Perches
2014-03-12 19:29 ` David Miller
8 siblings, 1 reply; 24+ messages in thread
From: Joe Perches @ 2014-03-12 17:22 UTC (permalink / raw)
To: netdev
Cc: QCA ath9k Development, John W. Linville, linux-wireless,
ath9k-devel, linux-kernel
The use of __constant_<foo> has been unnecessary for quite awhile now.
Make these uses consistent with the rest of the kernel.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
index b8daff7..d7625ec 100644
--- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
+++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
@@ -23,8 +23,8 @@
#define COMP_HDR_LEN 4
#define COMP_CKSUM_LEN 2
-#define LE16(x) __constant_cpu_to_le16(x)
-#define LE32(x) __constant_cpu_to_le32(x)
+#define LE16(x) cpu_to_le16(x)
+#define LE32(x) cpu_to_le32(x)
/* Local defines to distinguish between extension and control CTL's */
#define EXT_ADDITIVE (0x8000)
--
1.8.1.2.459.gbcd45b4.dirty
^ permalink raw reply related [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 8/9] lg-vl600: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 8/9] lg-vl600: " Joe Perches
@ 2014-03-12 19:29 ` David Miller
0 siblings, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:29 UTC (permalink / raw)
To: joe; +Cc: netdev, linux-usb, linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:37 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Applied.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 9/9] ath9k: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 9/9] ath9k: " Joe Perches
@ 2014-03-12 19:29 ` David Miller
0 siblings, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:29 UTC (permalink / raw)
To: joe
Cc: netdev, ath9k-devel, linville, linux-wireless, ath9k-devel,
linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:38 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Will let the wireless folks pick this up.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 7/9] xilinx: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 7/9] xilinx: " Joe Perches
@ 2014-03-12 19:29 ` David Miller
0 siblings, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:29 UTC (permalink / raw)
To: joe
Cc: netdev, michal.simek, anirudh, John.Linn, linux-arm-kernel,
linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:36 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Applied.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 6/9] ixgbevf: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 6/9] ixgbevf: " Joe Perches
@ 2014-03-12 19:29 ` David Miller
2014-03-12 20:51 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:29 UTC (permalink / raw)
To: joe
Cc: netdev, jeffrey.t.kirsher, jesse.brandeburg, bruce.w.allan,
carolyn.wyborny, donald.c.skidmore, gregory.v.rose,
alexander.h.duyck, john.ronciak, mitch.a.williams, e1000-devel,
linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:35 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Will let the Intel folks pick this up.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 5/9] ixgbe: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 5/9] ixgbe: " Joe Perches
@ 2014-03-12 19:29 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:29 UTC (permalink / raw)
To: joe
Cc: netdev, jeffrey.t.kirsher, jesse.brandeburg, bruce.w.allan,
carolyn.wyborny, donald.c.skidmore, gregory.v.rose,
alexander.h.duyck, john.ronciak, mitch.a.williams, e1000-devel,
linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:34 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Will let the Intel folks pick this up.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 4/9] igbvf: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 4/9] igbvf: " Joe Perches
@ 2014-03-12 19:29 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:29 UTC (permalink / raw)
To: joe
Cc: netdev, jeffrey.t.kirsher, jesse.brandeburg, bruce.w.allan,
carolyn.wyborny, donald.c.skidmore, gregory.v.rose,
alexander.h.duyck, john.ronciak, mitch.a.williams, e1000-devel,
linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:33 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Will let the Intel folks pick this up.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 3/9] igb: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 3/9] igb: " Joe Perches
@ 2014-03-12 19:30 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:30 UTC (permalink / raw)
To: joe
Cc: netdev, jeffrey.t.kirsher, jesse.brandeburg, bruce.w.allan,
carolyn.wyborny, donald.c.skidmore, gregory.v.rose,
alexander.h.duyck, john.ronciak, mitch.a.williams, e1000-devel,
linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:32 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Will let the Intel folks pick this up.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 2/9] e100: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 2/9] e100: " Joe Perches
@ 2014-03-12 19:30 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:30 UTC (permalink / raw)
To: joe
Cc: netdev, jeffrey.t.kirsher, jesse.brandeburg, bruce.w.allan,
carolyn.wyborny, donald.c.skidmore, gregory.v.rose,
alexander.h.duyck, john.ronciak, mitch.a.williams, e1000-devel,
linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:31 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Will let the Intel folks pick this up.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 1/9] brocade: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 1/9] brocade: " Joe Perches
@ 2014-03-12 19:30 ` David Miller
0 siblings, 0 replies; 24+ messages in thread
From: David Miller @ 2014-03-12 19:30 UTC (permalink / raw)
To: joe; +Cc: netdev, rmody, linux-kernel
From: Joe Perches <joe@perches.com>
Date: Wed, 12 Mar 2014 10:22:30 -0700
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
Applied.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 2/9] e100: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 2/9] e100: " Joe Perches
2014-03-12 19:30 ` David Miller
@ 2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: Jeff Kirsher @ 2014-03-12 20:50 UTC (permalink / raw)
To: Joe Perches
Cc: netdev, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 394 bytes --]
On Wed, 2014-03-12 at 10:22 -0700, Joe Perches wrote:
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/net/ethernet/intel/e100.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Thanks Joe, I will add this to my queue.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 3/9] igb: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 3/9] igb: " Joe Perches
2014-03-12 19:30 ` David Miller
@ 2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: Jeff Kirsher @ 2014-03-12 20:50 UTC (permalink / raw)
To: Joe Perches
Cc: netdev, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 411 bytes --]
On Wed, 2014-03-12 at 10:22 -0700, Joe Perches wrote:
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/net/ethernet/intel/igb/igb_main.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
Thanks Joe, I will add this to my queue.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 4/9] igbvf: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 4/9] igbvf: " Joe Perches
2014-03-12 19:29 ` David Miller
@ 2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: Jeff Kirsher @ 2014-03-12 20:50 UTC (permalink / raw)
To: Joe Perches
Cc: netdev, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 402 bytes --]
On Wed, 2014-03-12 at 10:22 -0700, Joe Perches wrote:
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/net/ethernet/intel/igbvf/netdev.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Thanks Joe, I will add this to my queue.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 5/9] ixgbe: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 5/9] ixgbe: " Joe Perches
2014-03-12 19:29 ` David Miller
@ 2014-03-12 20:50 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: Jeff Kirsher @ 2014-03-12 20:50 UTC (permalink / raw)
To: Joe Perches
Cc: netdev, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 499 bytes --]
On Wed, 2014-03-12 at 10:22 -0700, Joe Perches wrote:
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c | 8 +++----
> drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 30
> +++++++++++++--------------
> 2 files changed, 19 insertions(+), 19 deletions(-)
Thanks Joe, I will add this to my queue.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH net-next 6/9] ixgbevf: Convert uses of __constant_<foo> to <foo>
2014-03-12 17:22 ` [PATCH net-next 6/9] ixgbevf: " Joe Perches
2014-03-12 19:29 ` David Miller
@ 2014-03-12 20:51 ` Jeff Kirsher
1 sibling, 0 replies; 24+ messages in thread
From: Jeff Kirsher @ 2014-03-12 20:51 UTC (permalink / raw)
To: Joe Perches
Cc: netdev, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Alex Duyck, John Ronciak, Mitch Williams,
e1000-devel, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 410 bytes --]
On Wed, 2014-03-12 at 10:22 -0700, Joe Perches wrote:
> The use of __constant_<foo> has been unnecessary for quite awhile now.
>
> Make these uses consistent with the rest of the kernel.
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Thanks Joe, I will add this to my queue.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
end of thread, other threads:[~2014-03-12 20:54 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-12 17:22 [PATCH net-next 0/9] drivers/net: Convert uses of __constant_<foo> to <foo> Joe Perches
2014-03-12 17:22 ` [PATCH net-next 1/9] brocade: " Joe Perches
2014-03-12 19:30 ` David Miller
2014-03-12 17:22 ` [PATCH net-next 2/9] e100: " Joe Perches
2014-03-12 19:30 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 3/9] igb: " Joe Perches
2014-03-12 19:30 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 4/9] igbvf: " Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 5/9] ixgbe: " Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 20:50 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 6/9] ixgbevf: " Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 20:51 ` Jeff Kirsher
2014-03-12 17:22 ` [PATCH net-next 7/9] xilinx: " Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 17:22 ` [PATCH net-next 8/9] lg-vl600: " Joe Perches
2014-03-12 19:29 ` David Miller
2014-03-12 17:22 ` [PATCH net-next 9/9] ath9k: " Joe Perches
2014-03-12 19:29 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox