Skip to content

Commit

Permalink
Initial support for Exynos 7580
Browse files Browse the repository at this point in the history
Change-Id: I74c8f85ac4ad536c8ffecc00a67a30c44b337619
Signed-off-by: Apavayan <[email protected]>
  • Loading branch information
aapav01 committed Apr 14, 2016
1 parent f6069d4 commit f35ed4a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libdisplay/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ endif
# old kernel APIs for calling it (S3C_FB_*).
# Newer SoCs (Exynos 7420 onwards) make use of a new kernel API.
# WARNING: Support is highly experimental!
ifneq ($(filter exynos7420, $(TARGET_SOC)),)
ifneq ($(filter exynos7420 exynos7580, $(TARGET_SOC)),)
LOCAL_CFLAGS += -DDECON_FB
endif

Expand Down
2 changes: 1 addition & 1 deletion libhwc/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ endif
# old kernel APIs for calling it (S3C_FB_*).
# Newer SoCs (Exynos 7420 onwards) make use of a new kernel API.
# WARNING: Support is highly experimental!
ifneq ($(filter exynos7420, $(TARGET_SOC)),)
ifneq ($(filter exynos7420 exynos7580, $(TARGET_SOC)),)
LOCAL_CFLAGS += -DDECON_FB
endif

Expand Down
2 changes: 1 addition & 1 deletion libhwcutils/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ endif
# old kernel APIs for calling it (S3C_FB_*).
# Newer SoCs (Exynos 7420 onwards) make use of a new kernel API.
# WARNING: Support is highly experimental!
ifneq ($(filter exynos7420, $(TARGET_SOC)),)
ifneq ($(filter exynos7420 exynos7580, $(TARGET_SOC)),)
LOCAL_CFLAGS += -DDECON_FB
endif

Expand Down
4 changes: 4 additions & 0 deletions libvideocodec/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ ifeq ($(TARGET_SOC), exynos7420)
LOCAL_CFLAGS += -DSOC_EXYNOS5430
endif

ifeq ($(TARGET_SOC), exynos7580)
LOCAL_CFLAGS += -DSOC_EXYNOS5430
endif

LOCAL_MODULE := libExynosVideoApi
LOCAL_MODULE_TAGS := optional
LOCAL_ARM_MODE := arm
Expand Down

0 comments on commit f35ed4a

Please sign in to comment.