From: Rickard Strandqvist Date: Thu, 1 Jan 2015 17:51:30 +0000 (-0300) Subject: [media] media: platform: vsp1: vsp1_hsit: Remove unused function X-Git-Tag: v4.0-rc1~130^2~209 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=39ddae9b225b830d3e21f495da180164a8b90a50;p=karo-tx-linux.git [media] media: platform: vsp1: vsp1_hsit: Remove unused function Remove the function vsp1_hsit_read() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist Acked-by: Laurent Pinchart Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/vsp1/vsp1_hsit.c b/drivers/media/platform/vsp1/vsp1_hsit.c index 80bedc554ee3..0bc0471746c9 100644 --- a/drivers/media/platform/vsp1/vsp1_hsit.c +++ b/drivers/media/platform/vsp1/vsp1_hsit.c @@ -26,11 +26,6 @@ * Device Access */ -static inline u32 vsp1_hsit_read(struct vsp1_hsit *hsit, u32 reg) -{ - return vsp1_read(hsit->entity.vsp1, reg); -} - static inline void vsp1_hsit_write(struct vsp1_hsit *hsit, u32 reg, u32 data) { vsp1_write(hsit->entity.vsp1, reg, data);