From patchwork Thu Mar 1 04:05:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 7025 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 EF4C723EA8 for ; Thu, 1 Mar 2012 04:12:32 +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 B12E7A182AE for ; Thu, 1 Mar 2012 04:12:32 +0000 (UTC) Received: by mail-iy0-f180.google.com with SMTP id e36so377519iag.11 for ; Wed, 29 Feb 2012 20:12:32 -0800 (PST) Received: from mr.google.com ([10.50.95.230]) by 10.50.95.230 with SMTP id dn6mr9287685igb.0.1330575152565 (num_hops = 1); Wed, 29 Feb 2012 20:12:32 -0800 (PST) Received: by 10.50.95.230 with SMTP id dn6mr7613312igb.0.1330575152533; Wed, 29 Feb 2012 20:12:32 -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 k18csp7227ibg; Wed, 29 Feb 2012 20:12:32 -0800 (PST) Received: by 10.68.223.199 with SMTP id qw7mr12335792pbc.79.1330575151880; Wed, 29 Feb 2012 20:12:31 -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.31 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 29 Feb 2012 20:12:31 -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:31 -0800 (PST) Received-SPF: pass (google.com: domain of sachin.kamat@linaro.org designates 10.68.219.130 as permitted sender) client-ip=10.68.219.130; Received: from mr.google.com ([10.68.219.130]) by 10.68.219.130 with SMTP id po2mr14713847pbc.140.1330575151724 (num_hops = 1); Wed, 29 Feb 2012 20:12:31 -0800 (PST) MIME-Version: 1.0 Received: by 10.68.219.130 with SMTP id po2mr12194435pbc.140.1330575151675; Wed, 29 Feb 2012 20:12:31 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id g4sm944394pbs.17.2012.02.29.20.12.29 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 29 Feb 2012 20:12:31 -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 4/4] ARM: S5PV210: Enable JPEG on SMDKV210 Date: Thu, 1 Mar 2012 09:35:52 +0530 Message-Id: <1330574752-14088-5-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: ALoCoQlRCw14hN5N2yqoroZRS7cDSQrTDQ76qaplkfaMaJ6l4R9ew+pkc65A1QmkQ3ExR/8WRHUA Enables JPEG support on SMDKV210 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-s5pv210/Kconfig | 1 + arch/arm/mach-s5pv210/mach-smdkv210.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig index 2cdc42e..ba63c3a 100644 --- a/arch/arm/mach-s5pv210/Kconfig +++ b/arch/arm/mach-s5pv210/Kconfig @@ -142,6 +142,7 @@ config MACH_SMDKV210 select S3C_DEV_I2C2 select S3C_DEV_RTC select S3C_DEV_WDT + select S5P_DEV_JPEG select SAMSUNG_DEV_ADC select SAMSUNG_DEV_BACKLIGHT select SAMSUNG_DEV_IDE diff --git a/arch/arm/mach-s5pv210/mach-smdkv210.c b/arch/arm/mach-s5pv210/mach-smdkv210.c index 0933c8e..37b16fc 100644 --- a/arch/arm/mach-s5pv210/mach-smdkv210.c +++ b/arch/arm/mach-s5pv210/mach-smdkv210.c @@ -223,6 +223,7 @@ static struct platform_device *smdkv210_devices[] __initdata = { &s3c_device_rtc, &s3c_device_ts, &s3c_device_wdt, + &s5p_device_jpeg, &s5pv210_device_ac97, &s5pv210_device_iis0, &s5pv210_device_spdif,