|
@@ -255,7 +255,7 @@ static void request_module_async(struct work_struct *work)
|
|
|
request_module("cx18-alsa");
|
|
|
|
|
|
/* Initialize cx18-alsa for this instance of the cx18 device */
|
|
|
- if (cx18_ext_init != NULL)
|
|
|
+ if (cx18_ext_init)
|
|
|
cx18_ext_init(dev);
|
|
|
}
|
|
|
|
|
@@ -291,11 +291,11 @@ int cx18_msleep_timeout(unsigned int msecs, int intr)
|
|
|
/* Release ioremapped memory */
|
|
|
static void cx18_iounmap(struct cx18 *cx)
|
|
|
{
|
|
|
- if (cx == NULL)
|
|
|
+ if (!cx)
|
|
|
return;
|
|
|
|
|
|
/* Release io memory */
|
|
|
- if (cx->enc_mem != NULL) {
|
|
|
+ if (cx->enc_mem) {
|
|
|
CX18_DEBUG_INFO("releasing enc_mem\n");
|
|
|
iounmap(cx->enc_mem);
|
|
|
cx->enc_mem = NULL;
|
|
@@ -649,15 +649,15 @@ static void cx18_process_options(struct cx18 *cx)
|
|
|
CX18_INFO("User specified %s card\n", cx->card->name);
|
|
|
else if (cx->options.cardtype != 0)
|
|
|
CX18_ERR("Unknown user specified type, trying to autodetect card\n");
|
|
|
- if (cx->card == NULL) {
|
|
|
+ if (!cx->card) {
|
|
|
if (cx->pci_dev->subsystem_vendor == CX18_PCI_ID_HAUPPAUGE) {
|
|
|
cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
|
|
|
CX18_INFO("Autodetected Hauppauge card\n");
|
|
|
}
|
|
|
}
|
|
|
- if (cx->card == NULL) {
|
|
|
+ if (!cx->card) {
|
|
|
for (i = 0; (cx->card = cx18_get_card(i)); i++) {
|
|
|
- if (cx->card->pci_list == NULL)
|
|
|
+ if (!cx->card->pci_list)
|
|
|
continue;
|
|
|
for (j = 0; cx->card->pci_list[j].device; j++) {
|
|
|
if (cx->pci_dev->device !=
|
|
@@ -676,7 +676,7 @@ static void cx18_process_options(struct cx18 *cx)
|
|
|
}
|
|
|
done:
|
|
|
|
|
|
- if (cx->card == NULL) {
|
|
|
+ if (!cx->card) {
|
|
|
cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
|
|
|
CX18_ERR("Unknown card: vendor/device: [%04x:%04x]\n",
|
|
|
cx->pci_dev->vendor, cx->pci_dev->device);
|
|
@@ -698,7 +698,7 @@ static int cx18_create_in_workq(struct cx18 *cx)
|
|
|
snprintf(cx->in_workq_name, sizeof(cx->in_workq_name), "%s-in",
|
|
|
cx->v4l2_dev.name);
|
|
|
cx->in_work_queue = alloc_ordered_workqueue("%s", 0, cx->in_workq_name);
|
|
|
- if (cx->in_work_queue == NULL) {
|
|
|
+ if (!cx->in_work_queue) {
|
|
|
CX18_ERR("Unable to create incoming mailbox handler thread\n");
|
|
|
return -ENOMEM;
|
|
|
}
|
|
@@ -1254,7 +1254,7 @@ static void cx18_cancel_out_work_orders(struct cx18 *cx)
|
|
|
{
|
|
|
int i;
|
|
|
for (i = 0; i < CX18_MAX_STREAMS; i++)
|
|
|
- if (&cx->streams[i].video_dev != NULL)
|
|
|
+ if (&cx->streams[i].video_dev)
|
|
|
cancel_work_sync(&cx->streams[i].out_work_order);
|
|
|
}
|
|
|
|
|
@@ -1299,7 +1299,7 @@ static void cx18_remove(struct pci_dev *pci_dev)
|
|
|
|
|
|
pci_disable_device(cx->pci_dev);
|
|
|
|
|
|
- if (cx->vbi.sliced_mpeg_data[0] != NULL)
|
|
|
+ if (cx->vbi.sliced_mpeg_data[0])
|
|
|
for (i = 0; i < CX18_VBI_FRAMES; i++)
|
|
|
kfree(cx->vbi.sliced_mpeg_data[i]);
|
|
|
|