Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bad1f29d authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] cx25821: remove TRUE/FALSE/STATUS_(UN)SUCCESSFUL defines

parent f8d7ee70
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
+1 −1
Original line number Diff line number Diff line
@@ -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)
+0 −5
Original line number Diff line number Diff line
@@ -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))