microread.h 528 B

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