From patchwork Thu Mar 1 04:05:50 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 7023 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 4233C23EA8 for ; Thu, 1 Mar 2012 04:12:27 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 0B730A182AF for ; Thu, 1 Mar 2012 04:12:26 +0000 (UTC) Received: by mail-iy0-f180.google.com with SMTP id e36so377519iag.11 for ; Wed, 29 Feb 2012 20:12:26 -0800 (PST) Received: from mr.google.com ([10.50.193.131]) by 10.50.193.131 with SMTP id ho3mr363256igc.55.1330575146884 (num_hops = 1); Wed, 29 Feb 2012 20:12:26 -0800 (PST) Received: by 10.50.193.131 with SMTP id ho3mr298438igc.55.1330575146791; Wed, 29 Feb 2012 20:12:26 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.53.18 with SMTP id k18csp7225ibg; Wed, 29 Feb 2012 20:12:26 -0800 (PST) Received: by 10.68.227.99 with SMTP id rz3mr7126087pbc.39.1330575146013; Wed, 29 Feb 2012 20:12:26 -0800 (PST) Received: from mail-pw0-f50.google.com (mail-pw0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id g9si1395041pbd.71.2012.02.29.20.12.25 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 29 Feb 2012 20:12:26 -0800 (PST) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pw0-f50.google.com with SMTP id wz7so407727pbc.37 for ; Wed, 29 Feb 2012 20:12:25 -0800 (PST) Received-SPF: pass (google.com: domain of sachin.kamat@linaro.org designates 10.68.130.7 as permitted sender) client-ip=10.68.130.7; Received: from mr.google.com ([10.68.130.7]) by 10.68.130.7 with SMTP id oa7mr15744145pbb.16.1330575145853 (num_hops = 1); Wed, 29 Feb 2012 20:12:25 -0800 (PST) MIME-Version: 1.0 Received: by 10.68.130.7 with SMTP id oa7mr13072735pbb.16.1330575145730; Wed, 29 Feb 2012 20:12:25 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id g4sm944394pbs.17.2012.02.29.20.12.23 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 29 Feb 2012 20:12:25 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 2/4] ARM: EXYNOS: Enable JPEG on Origen Date: Thu, 1 Mar 2012 09:35:50 +0530 Message-Id: <1330574752-14088-3-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1330574752-14088-1-git-send-email-sachin.kamat@linaro.org> References: <1330574752-14088-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQmK6ulMcrNaryBsA5alkk91bUVdeEal+KfaOQmEO3g7duFN/xhAgQsH9jIbpJ0OW5WhStps Enables JPEG support on Origen board. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/Kconfig | 1 + arch/arm/mach-exynos/mach-origen.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig index 8757124..41eead3 100644 --- a/arch/arm/mach-exynos/Kconfig +++ b/arch/arm/mach-exynos/Kconfig @@ -305,6 +305,7 @@ config MACH_ORIGEN select S5P_DEV_FIMD0 select S5P_DEV_G2D select S5P_DEV_I2C_HDMIPHY + select S5P_DEV_JPEG select S5P_DEV_MFC select S5P_DEV_TV select S5P_DEV_USB_EHCI diff --git a/arch/arm/mach-exynos/mach-origen.c b/arch/arm/mach-exynos/mach-origen.c index 02c242e..827cb99 100644 --- a/arch/arm/mach-exynos/mach-origen.c +++ b/arch/arm/mach-exynos/mach-origen.c @@ -637,6 +637,7 @@ static struct platform_device *origen_devices[] __initdata = { &s5p_device_g2d, &s5p_device_hdmi, &s5p_device_i2c_hdmiphy, + &s5p_device_jpeg, &s5p_device_mfc, &s5p_device_mfc_l, &s5p_device_mfc_r,