xref: /linux/drivers/nfc/microread/microread.h (revision cbdb1f163af2bb90d01be1f0263df1d8d5c9d9d3)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Copyright (C) 2011 - 2012  Intel Corporation. All rights reserved.
4  */
5 
6 #ifndef __LOCAL_MICROREAD_H_
7 #define __LOCAL_MICROREAD_H_
8 
9 #include <net/nfc/hci.h>
10 
11 #define DRIVER_DESC "NFC driver for microread"
12 
13 int microread_probe(void *phy_id, const struct nfc_phy_ops *phy_ops,
14 		    const char *llc_name, int phy_headroom, int phy_tailroom,
15 		    int phy_payload, struct nfc_hci_dev **hdev);
16 
17 void microread_remove(struct nfc_hci_dev *hdev);
18 
19 #endif /* __LOCAL_MICROREAD_H_ */
20