]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Bluetooth: trivial: Use preferred method for NULL check
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Tue, 7 Aug 2012 15:05:06 +0000 (18:05 +0300)
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>
Tue, 21 Aug 2012 17:54:39 +0000 (14:54 -0300)
Use standard bluetooth way to check NULL pointer !var instead of
var == NULL.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
net/bluetooth/af_bluetooth.c

index 1b88fe41f4b1de26f00ed1751500fca93c6f8e47..9d49ee6d72190c8f9b727ed98ee1ba9f0c256f48 100644 (file)
@@ -622,7 +622,7 @@ static int bt_seq_open(struct inode *inode, struct file *file)
        sk_list = PDE(inode)->data;
        s = __seq_open_private(file, &bt_seq_ops,
                               sizeof(struct bt_seq_state));
-       if (s == NULL)
+       if (!s)
                return -ENOMEM;
 
        s->l = sk_list;
@@ -644,7 +644,7 @@ int bt_procfs_init(struct module* module, struct net *net, const char *name,
        sk_list->fops.release   = seq_release_private;
 
        pde = proc_net_fops_create(net, name, 0, &sk_list->fops);
-       if (pde == NULL)
+       if (!pde)
                return -ENOMEM;
 
        pde->data = sk_list;