diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2012-05-07 12:31:26 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-05-15 17:30:30 -0400 |
commit | 799030b75a4398b4e75ca5cb5ec790dc75986111 (patch) | |
tree | c46007dcd62f3b2ddf1b341817ebf3902ef76b9d /net/nfc/nci | |
parent | 502b42408276431605ceaea5dc026a256acc310e (diff) | |
download | linux-3.10-799030b75a4398b4e75ca5cb5ec790dc75986111.tar.gz linux-3.10-799030b75a4398b4e75ca5cb5ec790dc75986111.tar.bz2 linux-3.10-799030b75a4398b4e75ca5cb5ec790dc75986111.zip |
NFC: Quiet nci/ntf.c sparse noise about plain integer as NULL pointer
Pointers should be cleared with NULL, not 0.
Quiets a couple sparse warnings of the type:
warning: Using plain integer as NULL pointer
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
Cc: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/nfc/nci')
-rw-r--r-- | net/nfc/nci/ntf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nfc/nci/ntf.c b/net/nfc/nci/ntf.c index 99e1632e6aa..cb2646179e5 100644 --- a/net/nfc/nci/ntf.c +++ b/net/nfc/nci/ntf.c @@ -497,7 +497,7 @@ static void nci_rf_deactivate_ntf_packet(struct nci_dev *ndev, /* drop partial rx data packet */ if (ndev->rx_data_reassembly) { kfree_skb(ndev->rx_data_reassembly); - ndev->rx_data_reassembly = 0; + ndev->rx_data_reassembly = NULL; } /* complete the data exchange transaction, if exists */ |