From patchwork Mon Feb 25 08:12:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 15059 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 B00FF23E1A for ; Mon, 25 Feb 2013 08:22:32 +0000 (UTC) Received: from mail-ve0-f171.google.com (mail-ve0-f171.google.com [209.85.128.171]) by fiordland.canonical.com (Postfix) with ESMTP id 4E0CEA18AB8 for ; Mon, 25 Feb 2013 08:22:32 +0000 (UTC) Received: by mail-ve0-f171.google.com with SMTP id b10so1972447vea.2 for ; Mon, 25 Feb 2013 00:22:31 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :mime-version:content-type:content-transfer-encoding :x-gm-message-state; bh=L4rYwiMFfmyOteychhMzdRcrJVHAlFVeMJKH8YMhWYA=; b=VDOLhbPwxgGrPTrGa1QWf/u+lkYuiTNzzVAO+k6iF1WAPLL/ddv5/3SsbKRQaKkhxE fnM/G2VjeZSSSAxi510jjrL9jbkzzSLv9uUdqeTessjGfOwAXen4/MmjepNAywPuHCMO TtGcmUjjXVJsDveJKLKyAoUg62aCeHyg6xTEPSrYK6CBmGuvAGlxciAd+uUEUVxJ3pjL 5YFatENxz3f06Nw/wiDyaMevVQ0h8pxs2mn6wy0kZxsS6+EVuHndix1C1qA+EE6C/0Sb YhNAPBUfkP9VMViGjRAI4Lq/ENAAF66rODG/LXjPc9FyM0Mb/WUedv+VkPs093q3IET2 W2yQ== X-Received: by 10.58.188.48 with SMTP id fx16mr9818567vec.22.1361780551771; Mon, 25 Feb 2013 00:22:31 -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.58.145.101 with SMTP id st5csp46891veb; Mon, 25 Feb 2013 00:22:31 -0800 (PST) X-Received: by 10.66.248.34 with SMTP id yj2mr17453539pac.146.1361780550740; Mon, 25 Feb 2013 00:22:30 -0800 (PST) Received: from mail-da0-f46.google.com (mail-da0-f46.google.com [209.85.210.46]) by mx.google.com with ESMTPS id t10si11383162pay.302.2013.02.25.00.22.30 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 25 Feb 2013 00:22:30 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.46 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.46; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.46 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-da0-f46.google.com with SMTP id z8so139362dad.5 for ; Mon, 25 Feb 2013 00:22:30 -0800 (PST) X-Received: by 10.66.190.226 with SMTP id gt2mr17733586pac.62.1361780550045; Mon, 25 Feb 2013 00:22:30 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id pg6sm11990393pbb.0.2013.02.25.00.22.26 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 25 Feb 2013 00:22:29 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org, Sylwester Nawrocki Subject: [PATCH] ARM: S5PV210: Fix compilation error in mach-goni.c Date: Mon, 25 Feb 2013 13:42:18 +0530 Message-Id: <1361779938-30023-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 X-Gm-Message-State: ALoCoQnu6RigMAldeB6JRQ41cSjLjvhuS/owi2uF0CF1nJcuNZsHEPqMhcb33ElbRV7QiNmFwLLJ Commit 56bc91 ("[media] s5p-fimc: Redefine platform data structure for fimc-is") split bus_type into fimc_bus_type and sensor_bus_type and converted all instances of it. This file however escaped the change. Without this patch we get the following build error: arch/arm/mach-s5pv210/mach-goni.c:848:3: error: unknown field ‘bus_type’ specified in initializer Signed-off-by: Sachin Kamat Cc: Sylwester Nawrocki --- Based on Linus' mainline kernel tree (v3.8+). --- arch/arm/mach-s5pv210/mach-goni.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-s5pv210/mach-goni.c b/arch/arm/mach-s5pv210/mach-goni.c index 3a38f7b..e373de4 100644 --- a/arch/arm/mach-s5pv210/mach-goni.c +++ b/arch/arm/mach-s5pv210/mach-goni.c @@ -845,7 +845,7 @@ static struct fimc_source_info goni_camera_sensors[] = { .mux_id = 0, .flags = V4L2_MBUS_PCLK_SAMPLE_FALLING | V4L2_MBUS_VSYNC_ACTIVE_LOW, - .bus_type = FIMC_BUS_TYPE_ITU_601, + .fimc_bus_type = FIMC_BUS_TYPE_ITU_601, .board_info = &noon010pc30_board_info, .i2c_bus_num = 0, .clk_frequency = 16000000UL,