]> git.karo-electronics.de Git - karo-tx-linux.git/commit
zr36016: remove some unused tables
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 24 Jun 2016 15:02:11 +0000 (12:02 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 24 Jun 2016 15:02:11 +0000 (12:02 -0300)
commit40bcfdac9651e23b92a888c983bf0f0a28d7bfbb
tree2f1e47a5d8518c982fc4312a1e89f79c4d6898ee
parent29025f69bb8aa0900ed89bd3abbe97ea85ff760a
zr36016: remove some unused tables

Gcc 6.1 warns about some unused tables:

drivers/media/pci/zoran/zr36016.c:251:18: warning: 'zr016_yoff' defined but not used [-Wunused-const-variable=]
 static const int zr016_yoff[] = { 8, 9, 7 };
                  ^~~~~~~~~~
drivers/media/pci/zoran/zr36016.c:250:18: warning: 'zr016_xoff' defined but not used [-Wunused-const-variable=]
 static const int zr016_xoff[] = { 20, 20, 20 };
                  ^~~~~~~~~~

Those tables aren't used anywere. So, remove them.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/pci/zoran/zr36016.c