mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-28 12:19:09 -04:00
net: ll_temac: axienet: align with open parenthesis
Cleaning some static warnings of open parenthesis. Signed-off-by: huangjunxian <huangjunxian6@hisilicon.com> Signed-off-by: Haoyue Xu <xuhaoyue1@hisilicon.com> Reviewed-by: Harini Katakam <harini.katakam@amd.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
653de988eb
commit
42f5d4d0e0
@@ -261,7 +261,7 @@ static void temac_dma_dcr_out(struct temac_local *lp, int reg, u32 value)
|
||||
* I/O functions
|
||||
*/
|
||||
static int temac_dcr_setup(struct temac_local *lp, struct platform_device *op,
|
||||
struct device_node *np)
|
||||
struct device_node *np)
|
||||
{
|
||||
unsigned int dcrs;
|
||||
|
||||
@@ -286,7 +286,7 @@ static int temac_dcr_setup(struct temac_local *lp, struct platform_device *op,
|
||||
* such as with MicroBlaze and x86
|
||||
*/
|
||||
static int temac_dcr_setup(struct temac_local *lp, struct platform_device *op,
|
||||
struct device_node *np)
|
||||
struct device_node *np)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
@@ -309,7 +309,7 @@ static void temac_dma_bd_release(struct net_device *ndev)
|
||||
break;
|
||||
else {
|
||||
dma_unmap_single(ndev->dev.parent, lp->rx_bd_v[i].phys,
|
||||
XTE_MAX_JUMBO_FRAME_SIZE, DMA_FROM_DEVICE);
|
||||
XTE_MAX_JUMBO_FRAME_SIZE, DMA_FROM_DEVICE);
|
||||
dev_kfree_skb(lp->rx_skb[i]);
|
||||
}
|
||||
}
|
||||
@@ -682,7 +682,6 @@ static void temac_device_reset(struct net_device *ndev)
|
||||
if (temac_dma_bd_init(ndev)) {
|
||||
dev_err(&ndev->dev,
|
||||
"%s descriptor allocation failed\n", __func__);
|
||||
|
||||
}
|
||||
|
||||
spin_lock_irqsave(lp->indirect_lock, flags);
|
||||
|
||||
@@ -603,7 +603,7 @@ static inline void axienet_dma_out_addr(struct axienet_local *lp, off_t reg,
|
||||
#else /* CONFIG_64BIT */
|
||||
|
||||
static inline void axienet_dma_out_addr(struct axienet_local *lp, off_t reg,
|
||||
dma_addr_t addr)
|
||||
dma_addr_t addr)
|
||||
{
|
||||
axienet_dma_out32(lp, reg, lower_32_bits(addr));
|
||||
}
|
||||
|
||||
@@ -597,7 +597,7 @@ static int axienet_device_reset(struct net_device *ndev)
|
||||
lp->options &= (~XAE_OPTION_JUMBO);
|
||||
|
||||
if ((ndev->mtu > XAE_MTU) &&
|
||||
(ndev->mtu <= XAE_JUMBO_MTU)) {
|
||||
(ndev->mtu <= XAE_JUMBO_MTU)) {
|
||||
lp->max_frm_size = ndev->mtu + VLAN_ETH_HLEN +
|
||||
XAE_TRL_SIZE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user