Commit b6cca54f authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Mauro Carvalho Chehab

[media] media: bcm2048: remove unused return of function

Integer return of bcm2048_parse_rds_rt () is never used, changing the return
type to void.
Signed-off-by: default avatarLuis de Bethencourt <luis.bg@samsung.com>
Acked-by: default avatarPali Rohár <pali.rohar@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 58514625
...@@ -1579,7 +1579,7 @@ static void bcm2048_parse_rt_match_d(struct bcm2048_device *bdev, int i, ...@@ -1579,7 +1579,7 @@ static void bcm2048_parse_rt_match_d(struct bcm2048_device *bdev, int i,
bcm2048_parse_rds_rt_block(bdev, i, index+2, crc); bcm2048_parse_rds_rt_block(bdev, i, index+2, crc);
} }
static int bcm2048_parse_rds_rt(struct bcm2048_device *bdev) static void bcm2048_parse_rds_rt(struct bcm2048_device *bdev)
{ {
int i, index = 0, crc, match_b = 0, match_c = 0, match_d = 0; int i, index = 0, crc, match_b = 0, match_c = 0, match_d = 0;
...@@ -1615,8 +1615,6 @@ static int bcm2048_parse_rds_rt(struct bcm2048_device *bdev) ...@@ -1615,8 +1615,6 @@ static int bcm2048_parse_rds_rt(struct bcm2048_device *bdev)
match_b = 1; match_b = 1;
} }
} }
return 0;
} }
static void bcm2048_parse_rds_ps_block(struct bcm2048_device *bdev, int i, static void bcm2048_parse_rds_ps_block(struct bcm2048_device *bdev, int i,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment