Skip to content

Commit d01174f

Browse files
xueliuStefan-Schmidt
authored andcommitted
ieee802154: netlink: fix typo of the name of struct genl_ops
Signed-off-by: Xue Liu <[email protected]> Signed-off-by: Stefan Schmidt <[email protected]>
1 parent 06ff5da commit d01174f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

net/ieee802154/netlink.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info)
8989
return genlmsg_reply(msg, info);
9090
}
9191

92-
static const struct genl_ops ieee8021154_ops[] = {
92+
static const struct genl_ops ieee802154_ops[] = {
9393
/* see nl-phy.c */
9494
IEEE802154_DUMP(IEEE802154_LIST_PHY, ieee802154_list_phy,
9595
ieee802154_dump_phy),
@@ -137,8 +137,8 @@ struct genl_family nl802154_family __ro_after_init = {
137137
.version = 1,
138138
.maxattr = IEEE802154_ATTR_MAX,
139139
.module = THIS_MODULE,
140-
.ops = ieee8021154_ops,
141-
.n_ops = ARRAY_SIZE(ieee8021154_ops),
140+
.ops = ieee802154_ops,
141+
.n_ops = ARRAY_SIZE(ieee802154_ops),
142142
.mcgrps = ieee802154_mcgrps,
143143
.n_mcgrps = ARRAY_SIZE(ieee802154_mcgrps),
144144
};

0 commit comments

Comments
 (0)