[media] s5p makefiles: don't override other selections on obj-[ym]
authorMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 20 Jun 2013 08:46:00 +0000 (05:46 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 20 Jun 2013 08:46:00 +0000 (05:46 -0300)
The $obj-m/$obj-y vars should be adding new modules to build, not
overriding it. So, it should never use
$obj-y := foo.o
instead, it should use:
$obj-y += foo.o

Failing to do that is very bad, as it will suppress needed modules.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

No differences found