Message ID | 1507648665-14932-1-git-send-email-liuxuenetmail@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Hello On 10.10.2017 17:17, Xue Liu wrote: > Signed-off-by: Xue Liu <liuxuenetmail@gmail.com> > --- > net/ieee802154/netlink.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/net/ieee802154/netlink.c b/net/ieee802154/netlink.c > index 6bde9e5..96636e3 100644 > --- a/net/ieee802154/netlink.c > +++ b/net/ieee802154/netlink.c > @@ -89,7 +89,7 @@ int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info) > return genlmsg_reply(msg, info); > } > > -static const struct genl_ops ieee8021154_ops[] = { > +static const struct genl_ops ieee802154_ops[] = { > /* see nl-phy.c */ > IEEE802154_DUMP(IEEE802154_LIST_PHY, ieee802154_list_phy, > ieee802154_dump_phy), > @@ -137,8 +137,8 @@ struct genl_family nl802154_family __ro_after_init = { > .version = 1, > .maxattr = IEEE802154_ATTR_MAX, > .module = THIS_MODULE, > - .ops = ieee8021154_ops, > - .n_ops = ARRAY_SIZE(ieee8021154_ops), > + .ops = ieee802154_ops, > + .n_ops = ARRAY_SIZE(ieee802154_ops), > .mcgrps = ieee802154_mcgrps, > .n_mcgrps = ARRAY_SIZE(ieee802154_mcgrps), > }; > Applied to my wpan-next tree. It will be part of my next pull request to the net tree. I took the freedom to adjust the patch subject slightly to match our style: ieee802154: netlink: fix typo of the name of struct genl_ops regards Stefan Schmidt -- To unsubscribe from this list: send the line "unsubscribe linux-wpan" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
OK. got the style. On 16 October 2017 at 22:14, Stefan Schmidt <stefan@datenfreihafen.org> wrote: > Hello > > On 10.10.2017 17:17, Xue Liu wrote: >> Signed-off-by: Xue Liu <liuxuenetmail@gmail.com> >> --- >> net/ieee802154/netlink.c | 6 +++--- >> 1 file changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/net/ieee802154/netlink.c b/net/ieee802154/netlink.c >> index 6bde9e5..96636e3 100644 >> --- a/net/ieee802154/netlink.c >> +++ b/net/ieee802154/netlink.c >> @@ -89,7 +89,7 @@ int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info) >> return genlmsg_reply(msg, info); >> } >> >> -static const struct genl_ops ieee8021154_ops[] = { >> +static const struct genl_ops ieee802154_ops[] = { >> /* see nl-phy.c */ >> IEEE802154_DUMP(IEEE802154_LIST_PHY, ieee802154_list_phy, >> ieee802154_dump_phy), >> @@ -137,8 +137,8 @@ struct genl_family nl802154_family __ro_after_init = { >> .version = 1, >> .maxattr = IEEE802154_ATTR_MAX, >> .module = THIS_MODULE, >> - .ops = ieee8021154_ops, >> - .n_ops = ARRAY_SIZE(ieee8021154_ops), >> + .ops = ieee802154_ops, >> + .n_ops = ARRAY_SIZE(ieee802154_ops), >> .mcgrps = ieee802154_mcgrps, >> .n_mcgrps = ARRAY_SIZE(ieee802154_mcgrps), >> }; >> > > Applied to my wpan-next tree. It will be part of my next pull request to > the net tree. > > I took the freedom to adjust the patch subject slightly to match our > style: > ieee802154: netlink: fix typo of the name of struct genl_ops > > regards > Stefan Schmidt -- To unsubscribe from this list: send the line "unsubscribe linux-wpan" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/net/ieee802154/netlink.c b/net/ieee802154/netlink.c index 6bde9e5..96636e3 100644 --- a/net/ieee802154/netlink.c +++ b/net/ieee802154/netlink.c @@ -89,7 +89,7 @@ int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info) return genlmsg_reply(msg, info); } -static const struct genl_ops ieee8021154_ops[] = { +static const struct genl_ops ieee802154_ops[] = { /* see nl-phy.c */ IEEE802154_DUMP(IEEE802154_LIST_PHY, ieee802154_list_phy, ieee802154_dump_phy), @@ -137,8 +137,8 @@ struct genl_family nl802154_family __ro_after_init = { .version = 1, .maxattr = IEEE802154_ATTR_MAX, .module = THIS_MODULE, - .ops = ieee8021154_ops, - .n_ops = ARRAY_SIZE(ieee8021154_ops), + .ops = ieee802154_ops, + .n_ops = ARRAY_SIZE(ieee802154_ops), .mcgrps = ieee802154_mcgrps, .n_mcgrps = ARRAY_SIZE(ieee802154_mcgrps), };
Signed-off-by: Xue Liu <liuxuenetmail@gmail.com> --- net/ieee802154/netlink.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)