diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2012-10-22 15:57:58 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-10-26 18:26:51 +0200 |
commit | 7eda8b8e967781cfa5a04962502f9aa428f67e5f (patch) | |
tree | 9ae63d4aee01fc7bf38545bd6b81350962adacfc /include/net/nfc | |
parent | ab34a1813ca16bfbc672a21ca354164c8b941922 (diff) | |
download | linux-7eda8b8e967781cfa5a04962502f9aa428f67e5f.tar.bz2 |
NFC: Use IDR library to assing NFC devices IDs
As a consequence the NFC device IDs won't be increasing all the time,
as IDR provides the first available ID.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include/net/nfc')
-rw-r--r-- | include/net/nfc/nfc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/nfc/nfc.h b/include/net/nfc/nfc.h index f05b10682c9d..fce80b2f9be7 100644 --- a/include/net/nfc/nfc.h +++ b/include/net/nfc/nfc.h @@ -95,7 +95,7 @@ struct nfc_genl_data { }; struct nfc_dev { - unsigned int idx; + int idx; u32 target_next_idx; struct nfc_target *targets; int n_targets; |