[media] cx25821: remove TRUE/FALSE/STATUS_(UN)SUCCESSFUL defines
authorHans Verkuil <hans.verkuil@cisco.com>
Sun, 14 Apr 2013 14:13:43 +0000 (11:13 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 16 Apr 2013 21:04:37 +0000 (18:04 -0300)
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/pci/cx25821/cx25821-core.c
drivers/media/pci/cx25821/cx25821-medusa-video.c
drivers/media/pci/cx25821/cx25821.h

index bf6c181..ba417c9 100644 (file)
@@ -814,7 +814,7 @@ static void cx25821_initialize(struct cx25821_dev *dev)
                cx25821_sram_channel_setup(dev, dev->channels[i].sram_channels,
                                                1440, 0);
                dev->channels[i].pixel_formats = PIXEL_FRMT_422;
-               dev->channels[i].use_cif_resolution = FALSE;
+               dev->channels[i].use_cif_resolution = 0;
        }
 
        /* Probably only affect Downstream */
index 6a92e5c..6ab3ae0 100644 (file)
@@ -404,7 +404,7 @@ static int medusa_initialize_pal(struct cx25821_dev *dev)
 
 int medusa_set_videostandard(struct cx25821_dev *dev)
 {
-       int status = STATUS_SUCCESS;
+       int status = 0;
        u32 value = 0, tmp = 0;
 
        if (dev->tvnorm & V4L2_STD_PAL_BG || dev->tvnorm & V4L2_STD_PAL_DK)
index c63f7f5..95dbf70 100644 (file)
@@ -52,8 +52,6 @@
 
 #define CX25821_MAXBOARDS 2
 
-#define TRUE    1
-#define FALSE   0
 #define LINE_SIZE_D1    1440
 
 /* Number of decoders and encoders */
@@ -456,9 +454,6 @@ struct sram_channel {
 
 extern const struct sram_channel cx25821_sram_channels[];
 
-#define STATUS_SUCCESS         0
-#define STATUS_UNSUCCESSFUL    -1
-
 #define cx_read(reg)             readl(dev->lmmio + ((reg)>>2))
 #define cx_write(reg, value)     writel((value), dev->lmmio + ((reg)>>2))