refcount_t is better suitable for counting references than atomic_t.
Signed-off-by: Elena Reshetova <elena.reshetova@intel.com>
Signed-off-by: Hans Liljestrand <ishkamiel@gmail.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: David Windsor <dwindsor@gmail.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
        if (!core)
                return NULL;
 
-       atomic_inc(&core->refcount);
+       refcount_set(&core->refcount, 1);
        core->pci_bus  = pci->bus->number;
        core->pci_slot = PCI_SLOT(pci->devfn);
        core->pci_irqmask = PCI_INT_RISC_RD_BERRINT | PCI_INT_RISC_WR_BERRINT |
 
                        mutex_unlock(&devlist);
                        return NULL;
                }
-               atomic_inc(&core->refcount);
+               refcount_inc(&core->refcount);
                mutex_unlock(&devlist);
                return core;
        }
        release_mem_region(pci_resource_start(pci, 0),
                           pci_resource_len(pci, 0));
 
-       if (!atomic_dec_and_test(&core->refcount))
+       if (!refcount_dec_and_test(&core->refcount))
                return;
 
        mutex_lock(&devlist);
 
 #include <linux/i2c-algo-bit.h>
 #include <linux/videodev2.h>
 #include <linux/kdev_t.h>
+#include <linux/refcount.h>
 
 #include <media/v4l2-device.h>
 #include <media/v4l2-fh.h>
 
 struct cx88_core {
        struct list_head           devlist;
-       atomic_t                   refcount;
+       refcount_t                 refcount;
 
        /* board name */
        int                        nr;