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: 2180381 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 25306DF230 for ; Mon, 25 Feb 2013 08:22:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754622Ab3BYIWb (ORCPT ); Mon, 25 Feb 2013 03:22:31 -0500 Received: from mail-pa0-f52.google.com ([209.85.220.52]:59671 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754567Ab3BYIWa (ORCPT ); Mon, 25 Feb 2013 03:22:30 -0500 Received: by mail-pa0-f52.google.com with SMTP id fb1so1615171pad.25 for ; Mon, 25 Feb 2013 00:22:30 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=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=KN5MBH5goOgYTPw6SsTtayKVdh5SVIqorCdS2eNVeu0HjUt/DsYyP4Nj1ItEzBdxOW SZfRhoHGUwUg6/PkBfI0i48NhZvqi+8d2rnCcXPtjHYtEk+3Bt/XiBSHjEbY7hkCo6OX UniPPQqGzBW3tOPeNe7L4C5yjovhMNXKJz//56vo0ul0c3S6tiI7H/u/1MvpNbCl8hys InE0JHYAu5vVdnQvQFPuZhxVUt8X7tQIebi47JiALpkZ1xzwpxNtygXMuxk8KuzzO6V9 t0ajMab52ib0DG0ln8kd5O/vQIRIJALdOcrKQeBNYv2MHTAaUxLJC9yqp147M1OvyQVs wANg== 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: ALoCoQmeSW+QVxzAYTPZI25qdehSMlDy34TcFJ711YrTUjW8RT5LOSL1GQ2PoX4qcxAVReype1Ce Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org 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,