mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
net: ieee802154: Use the IEEE802154_MAX_PAGE define when relevant
This define already exist but is hardcoded in nl-phy.c. Use the definition when relevant. While at it, also convert the type from uint32_t to u32. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Acked-by: Alexander Aring <aahringo@redhat.com> Link: https://lore.kernel.org/r/20220125122540.855604-3-miquel.raynal@bootlin.com Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
This commit is contained in:
parent
9d70c7e10a
commit
898db3b8f9
@ -30,7 +30,7 @@ static int ieee802154_nl_fill_phy(struct sk_buff *msg, u32 portid,
|
|||||||
{
|
{
|
||||||
void *hdr;
|
void *hdr;
|
||||||
int i, pages = 0;
|
int i, pages = 0;
|
||||||
uint32_t *buf = kcalloc(32, sizeof(uint32_t), GFP_KERNEL);
|
u32 *buf = kcalloc(IEEE802154_MAX_PAGE + 1, sizeof(u32), GFP_KERNEL);
|
||||||
|
|
||||||
pr_debug("%s\n", __func__);
|
pr_debug("%s\n", __func__);
|
||||||
|
|
||||||
@ -47,7 +47,7 @@ static int ieee802154_nl_fill_phy(struct sk_buff *msg, u32 portid,
|
|||||||
nla_put_u8(msg, IEEE802154_ATTR_PAGE, phy->current_page) ||
|
nla_put_u8(msg, IEEE802154_ATTR_PAGE, phy->current_page) ||
|
||||||
nla_put_u8(msg, IEEE802154_ATTR_CHANNEL, phy->current_channel))
|
nla_put_u8(msg, IEEE802154_ATTR_CHANNEL, phy->current_channel))
|
||||||
goto nla_put_failure;
|
goto nla_put_failure;
|
||||||
for (i = 0; i < 32; i++) {
|
for (i = 0; i <= IEEE802154_MAX_PAGE; i++) {
|
||||||
if (phy->supported.channels[i])
|
if (phy->supported.channels[i])
|
||||||
buf[pages++] = phy->supported.channels[i] | (i << 27);
|
buf[pages++] = phy->supported.channels[i] | (i << 27);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user