|
@@ -7,5 +7,7 @@ obj-$(CONFIG_VIDEO_OV8858) += ov8858_driver.o
|
|
|
|
|
|
# HACK! While this driver is in bad shape, don't enable several warnings
|
|
# HACK! While this driver is in bad shape, don't enable several warnings
|
|
# that would be otherwise enabled with W=1
|
|
# that would be otherwise enabled with W=1
|
|
-ccflags-y += -Wno-unused-but-set-variable -Wno-missing-prototypes \
|
|
|
|
- -Wno-unused-const-variable -Wno-missing-declarations
|
|
|
|
|
|
+ccflags-y += $(call cc-disable-warning, unused-but-set-variable)
|
|
|
|
+ccflags-y += $(call cc-disable-warning, unused-const-variable)
|
|
|
|
+ccflags-y += $(call cc-disable-warning, missing-prototypes)
|
|
|
|
+ccflags-y += $(call cc-disable-warning, missing-declarations)
|