diff options
author | Rob Herring <robh@kernel.org> | 2023-03-14 15:13:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-03-16 17:43:14 +0000 |
commit | 053fdaa841bd1af9fe9c2c30bba81119059aac95 (patch) | |
tree | 13ca1bf365ec8665691d82140a96a2eef4236f50 /drivers/nfc | |
parent | 0ba13995be9b416ea1d3daaf3ba871a67f45899b (diff) | |
download | linux-053fdaa841bd1af9fe9c2c30bba81119059aac95.tar.gz linux-053fdaa841bd1af9fe9c2c30bba81119059aac95.tar.bz2 linux-053fdaa841bd1af9fe9c2c30bba81119059aac95.zip |
nfc: mrvl: Move platform_data struct into driver
There are no users of nfcmrvl platform_data struct outside of the
driver and none will be added, so move it into the driver.
Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc')
-rw-r--r-- | drivers/nfc/nfcmrvl/nfcmrvl.h | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/drivers/nfc/nfcmrvl/nfcmrvl.h b/drivers/nfc/nfcmrvl/nfcmrvl.h index 165bd0a95190..0f22b3233f73 100644 --- a/drivers/nfc/nfcmrvl/nfcmrvl.h +++ b/drivers/nfc/nfcmrvl/nfcmrvl.h @@ -8,8 +8,6 @@ #ifndef _NFCMRVL_H_ #define _NFCMRVL_H_ -#include <linux/platform_data/nfcmrvl.h> - #include "fw_dnld.h" /* Define private flags: */ @@ -50,6 +48,34 @@ enum nfcmrvl_phy { NFCMRVL_PHY_SPI = 3, }; +struct nfcmrvl_platform_data { + /* + * Generic + */ + + /* GPIO that is wired to RESET_N signal */ + int reset_n_io; + /* Tell if transport is muxed in HCI one */ + unsigned int hci_muxed; + + /* + * UART specific + */ + + /* Tell if UART needs flow control at init */ + unsigned int flow_control; + /* Tell if firmware supports break control for power management */ + unsigned int break_control; + + + /* + * I2C specific + */ + + unsigned int irq; + unsigned int irq_polarity; +}; + struct nfcmrvl_private { unsigned long flags; |