diff options
author | David S. Miller <davem@davemloft.net> | 2021-06-03 15:21:58 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-03 15:21:58 -0700 |
commit | e31d57ca146bbd0a7deb7ad8c3380ffa4358e85c (patch) | |
tree | 1c54d211e3d58a7a403a470ea004c94b0b5b8c1f /drivers/net/ieee802154 | |
parent | 821bbf79fe46a8b1d18aa456e8ed0a3c208c3754 (diff) | |
parent | 373e864cf52403b0974c2f23ca8faf9104234555 (diff) | |
download | linux-stable-e31d57ca146bbd0a7deb7ad8c3380ffa4358e85c.tar.gz linux-stable-e31d57ca146bbd0a7deb7ad8c3380ffa4358e85c.tar.bz2 linux-stable-e31d57ca146bbd0a7deb7ad8c3380ffa4358e85c.zip |
Merge tag 'ieee802154-for-davem-2021-06-03' of git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan
Stefan Schmidt says:
====================
An update from ieee802154 for your *net* tree.
This time we have fixes for the ieee802154 netlink code, as well as a driver
fix. Zhen Lei, Wei Yongjun and Yang Li each had a patch to cleanup some return
code handling ensuring we actually get a real error code when things fails.
Dan Robertson fixed a potential null dereference in our netlink handling.
Andy Shevchenko removed of_match_ptr()usage in the mrf24j40 driver.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ieee802154')
-rw-r--r-- | drivers/net/ieee802154/mrf24j40.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ieee802154/mrf24j40.c b/drivers/net/ieee802154/mrf24j40.c index b9be530b285f..ff83e00b77af 100644 --- a/drivers/net/ieee802154/mrf24j40.c +++ b/drivers/net/ieee802154/mrf24j40.c @@ -8,8 +8,8 @@ #include <linux/spi/spi.h> #include <linux/interrupt.h> +#include <linux/mod_devicetable.h> #include <linux/module.h> -#include <linux/of.h> #include <linux/regmap.h> #include <linux/ieee802154.h> #include <linux/irq.h> @@ -1388,7 +1388,7 @@ MODULE_DEVICE_TABLE(spi, mrf24j40_ids); static struct spi_driver mrf24j40_driver = { .driver = { - .of_match_table = of_match_ptr(mrf24j40_of_match), + .of_match_table = mrf24j40_of_match, .name = "mrf24j40", }, .id_table = mrf24j40_ids, |