diff options
author | David S. Miller <davem@davemloft.net> | 2015-04-08 17:12:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-08 17:12:50 -0400 |
commit | 82740b9ac2fbd935361c1dc770ec49b692c28e7d (patch) | |
tree | 484bd5cfea3461fbd7c5aa203f4a06a1d8a5d88c /include/linux | |
parent | 51df60f5a428c249cd458451e0b56269417f3cda (diff) | |
parent | 3590ebc040c9ee5d06754ce926f0e7c3a595e46d (diff) | |
download | linux-82740b9ac2fbd935361c1dc770ec49b692c28e7d.tar.gz linux-82740b9ac2fbd935361c1dc770ec49b692c28e7d.tar.bz2 linux-82740b9ac2fbd935361c1dc770ec49b692c28e7d.zip |
Merge tag 'nfc-next-4.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/nfc-next
Samuel Ortiz says:
====================
NFC: 4.1 pull request
This is the NFC pull request for 4.1.
This is a shorter one than usual, as the Intel Field Peak NFC
driver could not make it in time.
We have:
- A new driver for NXP NCI based chipsets, like e.g. the NPC100 or
the PN7150. It currently only supports an i2c physical layer, but
could easily be extended to work on top of e.g. SPI.
This driver also includes support for user space triggered firmware
updates.
- A few minor st21nfc[ab] fixes, cleanups, and comments improvements.
- A pn533 error return fix.
- A few NFC related logs formatting cleanups.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/platform_data/nxp-nci.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/linux/platform_data/nxp-nci.h b/include/linux/platform_data/nxp-nci.h new file mode 100644 index 000000000000..d6ed28679bb2 --- /dev/null +++ b/include/linux/platform_data/nxp-nci.h @@ -0,0 +1,27 @@ +/* + * Generic platform data for the NXP NCI NFC chips. + * + * Copyright (C) 2014 NXP Semiconductors All rights reserved. + * + * Authors: Clément Perrochaud <clement.perrochaud@nxp.com> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#ifndef _NXP_NCI_H_ +#define _NXP_NCI_H_ + +struct nxp_nci_nfc_platform_data { + unsigned int gpio_en; + unsigned int gpio_fw; + unsigned int irq; +}; + +#endif /* _NXP_NCI_H_ */ |