
As a part FR72092 requirement, moved the NFC driver module out of kernel tree to be compiled as vendor techpackage. Change-Id: I177d81782a7059bf6b9b4556b384737708c43348
27 lines
508 B
C
27 lines
508 B
C
/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
|
|
/*
|
|
* Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _UAPI_NFCINFO_H_
|
|
#define _UAPI_NFCINFO_H_
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
#define NFCC_MAGIC 0xE9
|
|
#define NFCC_GET_INFO _IOW(NFCC_MAGIC, 0x09, unsigned int)
|
|
|
|
struct nqx_devinfo {
|
|
unsigned char chip_type;
|
|
unsigned char rom_version;
|
|
unsigned char fw_major;
|
|
unsigned char fw_minor;
|
|
};
|
|
|
|
union nqx_uinfo {
|
|
unsigned int i;
|
|
struct nqx_devinfo info;
|
|
};
|
|
|
|
#endif
|