1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the IPU3 ImgU drivers
4#
5
6ipu3-imgu-objs += \
7		ipu3-mmu.o ipu3-dmamap.o \
8		ipu3-tables.o ipu3-css-pool.o \
9		ipu3-css-fw.o ipu3-css-params.o \
10		ipu3-css.o ipu3-v4l2.o ipu3.o
11
12obj-$(CONFIG_VIDEO_IPU3_IMGU) += ipu3-imgu.o
13
14# HACK! While this driver is in bad shape, don't enable several warnings
15#       that would be otherwise enabled with W=1
16ccflags-y += $(call cc-disable-warning, packed-not-aligned)
17ccflags-y += $(call cc-disable-warning, type-limits)
18ccflags-y += $(call cc-disable-warning, unused-const-variable)
19