diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-16 16:57:21 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-16 19:55:03 -0300 |
commit | 88f8472c9fc6c08f5113887471f1f4aabf7b2929 (patch) | |
tree | 0dabbb94ae8c88105e6605076b755dc4febbe029 /drivers/media/dvb-frontends/Makefile | |
parent | 893430558e5bf116179915de2d3d119ad25c01cf (diff) | |
download | linux-88f8472c9fc6c08f5113887471f1f4aabf7b2929.tar.gz linux-88f8472c9fc6c08f5113887471f1f4aabf7b2929.tar.bz2 linux-88f8472c9fc6c08f5113887471f1f4aabf7b2929.zip |
[media] Fix some Makefile rules
On a few places, := were using instead of +=, causing drivers to
not compile.
While here, standardize the usage of += on all cases where multiple
lines are needed, and for obj-y/obj-m targets, and := when just one
line is needed, on <module>-obj rules.
Reported-by: Hans Verkuil <hverkuil@xs4all.nl>
Identified-by: Antti Polosaari <crope@iki.fi>
Tested-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb-frontends/Makefile')
-rw-r--r-- | drivers/media/dvb-frontends/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/dvb-frontends/Makefile b/drivers/media/dvb-frontends/Makefile index 208bc496b90a..7eb73bbd2e26 100644 --- a/drivers/media/dvb-frontends/Makefile +++ b/drivers/media/dvb-frontends/Makefile @@ -5,10 +5,10 @@ ccflags-y += -I$(srctree)/drivers/media/dvb-core/ ccflags-y += -I$(srctree)/drivers/media/tuners/ -stb0899-objs = stb0899_drv.o stb0899_algo.o -stv0900-objs = stv0900_core.o stv0900_sw.o -drxd-objs = drxd_firm.o drxd_hard.o -cxd2820r-objs = cxd2820r_core.o cxd2820r_c.o cxd2820r_t.o cxd2820r_t2.o +stb0899-objs := stb0899_drv.o stb0899_algo.o +stv0900-objs := stv0900_core.o stv0900_sw.o +drxd-objs := drxd_firm.o drxd_hard.o +cxd2820r-objs := cxd2820r_core.o cxd2820r_c.o cxd2820r_t.o cxd2820r_t2.o drxk-objs := drxk_hard.o obj-$(CONFIG_DVB_PLL) += dvb-pll.o |