[media] ti-fpe: LLVMLinux: Remove nested function from ti-vpe
authorBehan Webster <behanw@converseincode.com>
Sat, 27 Sep 2014 01:11:45 +0000 (22:11 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 30 Oct 2014 12:46:17 +0000 (10:46 -0200)
Replace the use of nested functions where a normal function will suffice.

Nested functions are not liked by upstream kernel developers in general. Their
use breaks the use of clang as a compiler, and doesn't make the code any
better.

This code now works for both gcc and clang.

Suggested-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Behan Webster <behanw@converseincode.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/ti-vpe/csc.c
drivers/media/platform/ti-vpe/sc.c

index 940df40..44fbf41 100644 (file)
@@ -93,12 +93,8 @@ void csc_dump_regs(struct csc_data *csc)
 {
        struct device *dev = &csc->pdev->dev;
 
-       u32 read_reg(struct csc_data *csc, int offset)
-       {
-               return ioread32(csc->base + offset);
-       }
-
-#define DUMPREG(r) dev_dbg(dev, "%-35s %08x\n", #r, read_reg(csc, CSC_##r))
+#define DUMPREG(r) dev_dbg(dev, "%-35s %08x\n", #r, \
+       ioread32(csc->base + CSC_##r))
 
        DUMPREG(CSC00);
        DUMPREG(CSC01);
index 6314171..1088381 100644 (file)
@@ -24,12 +24,8 @@ void sc_dump_regs(struct sc_data *sc)
 {
        struct device *dev = &sc->pdev->dev;
 
-       u32 read_reg(struct sc_data *sc, int offset)
-       {
-               return ioread32(sc->base + offset);
-       }
-
-#define DUMPREG(r) dev_dbg(dev, "%-35s %08x\n", #r, read_reg(sc, CFG_##r))
+#define DUMPREG(r) dev_dbg(dev, "%-35s %08x\n", #r, \
+       ioread32(sc->base + CFG_##r))
 
        DUMPREG(SC0);
        DUMPREG(SC1);