diff options
author | Vinod G <vinodg@nvidia.com> | 2014-01-24 23:49:32 -0800 |
---|---|---|
committer | Alexander Van Brunt <avanbrunt@nvidia.com> | 2014-01-29 11:34:38 -0800 |
commit | 3baf4637cf03fd684efedfd1d16beff88ebabfbe (patch) | |
tree | 010e0a9444943c21270308537d402ca64af63dc5 /drivers | |
parent | 6853b5f38a455278f8267772a5149c99be46257e (diff) |
media: platform: tegra: fix compilation error
Add conditional checking to disable the flag which enables warnings as error
for arm64 build
bug 1434476
Change-Id: I04ebc0b4bb829876008ef178dc864366aa0b1ded
Signed-off-by: Vinod G <vinodg@nvidia.com>
Reviewed-on: http://git-master/r/360090
Reviewed-by: Alexander Van Brunt <avanbrunt@nvidia.com>
Diffstat (limited to 'drivers')
-rwxr-xr-x[-rw-r--r--] | drivers/media/platform/tegra/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/tegra/Makefile b/drivers/media/platform/tegra/Makefile index c96e5a257c4d..ff5ef1e16043 100644..100755 --- a/drivers/media/platform/tegra/Makefile +++ b/drivers/media/platform/tegra/Makefile @@ -1,6 +1,6 @@ GCOV_PROFILE := y -subdir-ccflags-y := -Werror +subdir-ccflags-$(CONFIG_ARM) := -Werror # # Makefile for the video capture/playback device drivers. # |