From patchwork Sat Feb 16 16:34:27 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sylwester Nawrocki X-Patchwork-Id: 2151851 Return-Path: X-Original-To: patchwork-linux-media@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 55CD6DF2A1 for ; Sat, 16 Feb 2013 16:34:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753626Ab3BPQeh (ORCPT ); Sat, 16 Feb 2013 11:34:37 -0500 Received: from mail-ee0-f52.google.com ([74.125.83.52]:36158 "EHLO mail-ee0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753619Ab3BPQeh (ORCPT ); Sat, 16 Feb 2013 11:34:37 -0500 Received: by mail-ee0-f52.google.com with SMTP id b15so2159731eek.11 for ; Sat, 16 Feb 2013 08:34:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=dMVYQEzcfH/BF/58Q6MafIKiyVvSndEL3JM7n2CT4yA=; b=b4ttl//yUrAze6maEPpSJ0zg9N1uimfai9azRlk/iN9sz+ztTzEzf8ND+ASTL+6m/t HmC+VXBcNVmZbNno+k2JONSz1XnSi2VdaApLH/dxinEH+2VY68oTm06bmPQAJERR0GN7 OA7VwIMXnGTSeEZ07OZB4yN8xG/lsu0weA4Vd0ljmA77LgZL9ZJKAjOFOaYANpvCJaiL XqiDcXdqRqDJHx9afez47d4VdsdonQqqYiyH8cpzBTYSL7q85Z7Utg87+w8lIQApJhYI 18Y0eDKVj/FcJo/mZGBB6tfJZxfEu/FrhBAt/dvkj/ZTxPEqxahgatDB4SVLz5nnHfpo SRFg== X-Received: by 10.14.5.6 with SMTP id 6mr22114789eek.42.1361032475866; Sat, 16 Feb 2013 08:34:35 -0800 (PST) Received: from localhost.localdomain (093105185086.warszawa.vectranet.pl. [93.105.185.86]) by mx.google.com with ESMTPS id q5sm89237172eeo.17.2013.02.16.08.34.33 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 16 Feb 2013 08:34:34 -0800 (PST) From: Sylwester Nawrocki To: linux-media@vger.kernel.org Cc: Arnd Bergmann , Sylwester Nawrocki , Kyungmin Park , Kukjin Kim Subject: [PATCH 8/9] s5p-fimc: fix s5pv210 build Date: Sat, 16 Feb 2013 17:34:27 +0100 Message-Id: <1361032467-9705-1-git-send-email-sylvester.nawrocki@gmail.com> X-Mailer: git-send-email 1.7.4.1 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Arnd Bergmann 56bc911 "[media] s5p-fimc: Redefine platform data structure for fimc-is" changed the bus_type member of struct fimc_source_info treewide, but got one instance wrong in mach-s5pv210, which was evidently not even build tested. This adds the missing change to get s5pv210_defconfig to build again. Applies on the Mauro's media tree. Signed-off-by: Arnd Bergmann Cc: Sylwester Nawrocki Cc: Kyungmin Park Cc: Kukjin Kim --- Resending to include this patch in the linuxtv.org patchwork. arch/arm/mach-s5pv210/mach-goni.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-s5pv210/mach-goni.c b/arch/arm/mach-s5pv210/mach-goni.c index 423f6b6..868751d 100644 --- a/arch/arm/mach-s5pv210/mach-goni.c +++ b/arch/arm/mach-s5pv210/mach-goni.c @@ -846,7 +846,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,