Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7979472b authored by Romain Aviolat's avatar Romain Aviolat Committed by David S. Miller
Browse files

DRIVERS: net: macsec: Fix multiple coding style issues



This patch fixes a couple of issues highlighted by checkpatch.pl:

    * Missing a blank line after declarations
    * Alignment should match open parenthesis

Signed-off-by: default avatarRomain Aviolat <r.aviolat@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 957b085c
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -1142,6 +1142,7 @@ static rx_handler_result_t macsec_handle_frame(struct sk_buff **pskb)

	list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
		struct macsec_rx_sc *sc = find_rx_sc(&macsec->secy, sci);

		sc = sc ? macsec_rxsc_get(sc) : NULL;

		if (sc) {
@@ -1584,7 +1585,6 @@ static struct macsec_rx_sa *get_rxsa_from_nl(struct net *net,
	return rx_sa;
}


static const struct nla_policy macsec_genl_policy[NUM_MACSEC_ATTR] = {
	[MACSEC_ATTR_IFINDEX] = { .type = NLA_U32 },
	[MACSEC_ATTR_RXSC_CONFIG] = { .type = NLA_NESTED },
@@ -2962,13 +2962,11 @@ static int macsec_get_iflink(const struct net_device *dev)
	return macsec_priv(dev)->real_dev->ifindex;
}


static int macsec_get_nest_level(struct net_device *dev)
{
	return macsec_priv(dev)->nest_level;
}


static const struct net_device_ops macsec_netdev_ops = {
	.ndo_init		= macsec_dev_init,
	.ndo_uninit		= macsec_dev_uninit,