On Wed, Jun 18, 2014 at 06:16:03AM +0100, Varka Bhadram wrote:
Driver support:
- Tx and Rx of IEEE-802.15.4 packets.
- Energy Detection on channel.
- Setting the Channel for the radio. [b/w 11 - 26 channels]
- Start and Stop the radio.
Signed-off-by: Varka Bhadram <varkab-If5XQcfNmg0@public.gmane.org>
---
drivers/net/ieee802154/cc2520.c | 968 +++++++++++++++++++++++++++++++++++++++
include/linux/spi/cc2520.h | 26 ++
2 files changed, 994 insertions(+)
create mode 100644 drivers/net/ieee802154/cc2520.c
create mode 100644 include/linux/spi/cc2520.h
[...]
+static struct cc2520_platform_data *
+cc2520_get_platform_data(struct spi_device *spi)
+{
+ struct cc2520_platform_data *pdata;
+ struct device_node __maybe_unused *np = spi->dev.of_node;
+ struct cc2520_private *priv = spi_get_drvdata(spi);
+
+ if (!IS_ENABLED(CONFIG_OF) || !np)
+ return spi->dev.platform_data;
Surely "if (!np)" is good enough?