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, struct nfc_phy_ops *phy_ops, char *llc_name, 14 int phy_headroom, int phy_tailroom, int phy_payload, 15 struct nfc_hci_dev **hdev); 16 17 void microread_remove(struct nfc_hci_dev *hdev); 18 19 #endif /* __LOCAL_MICROREAD_H_ */ 20