diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-02-22 22:14:18 +0800 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2014-02-23 23:34:09 +0100 |
commit | 0b51fc5633df563695f5021bc121a9df20b3eb14 (patch) | |
tree | 30fbe7320113f6aae986ff8c7d79bd0937c72390 /net/nfc/hci | |
parent | 4f913d4631fa9c47320669b2e7ec62fa7436719d (diff) | |
download | linux-0b51fc5633df563695f5021bc121a9df20b3eb14.tar.bz2 |
NFC: Use LIST_HEAD() at appropriate places
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'net/nfc/hci')
-rw-r--r-- | net/nfc/hci/llc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/nfc/hci/llc.c b/net/nfc/hci/llc.c index a07d2b818487..1b90c0531852 100644 --- a/net/nfc/hci/llc.c +++ b/net/nfc/hci/llc.c @@ -20,14 +20,12 @@ #include "llc.h" -static struct list_head llc_engines; +static LIST_HEAD(llc_engines); int nfc_llc_init(void) { int r; - INIT_LIST_HEAD(&llc_engines); - r = nfc_llc_nop_register(); if (r) goto exit; |