From patchwork Mon May 7 03:46:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 8419 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 E3D7623E49 for ; Mon, 7 May 2012 03:56:36 +0000 (UTC) Received: from mail-ob0-f180.google.com (mail-ob0-f180.google.com [209.85.214.180]) by fiordland.canonical.com (Postfix) with ESMTP id 9C6E3A18687 for ; Mon, 7 May 2012 03:56:36 +0000 (UTC) Received: by obbup16 with SMTP id up16so10043875obb.11 for ; Sun, 06 May 2012 20:56:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=WQ3JJIwzeYgGId6rfiaKxpL1ecr/Lu3nT0W8scJK0wY=; b=EEk9661r8rNbqUyCgx9lZoJYcEY3ZKoxuU7xYL8NoaafQqpYYFiKdnV6/0odv9Kuy3 lM+vEL7+I5XDyrfYbk7Wccwwkkitvgzv5vZrlNry5PKM0aOTVXdeXFtzLkgWAtJY4TUI W4Psdc5Ml95sUnXfowLtGauxlUWbNveaZgPQ/yTmySVvuaATH3wH8Ov0frrd34S/k0Bg Vv9EO7CLyrr21cULa0ZV+/CM6+RBcukvW3+w4tkgWpArMZIHe7dwH6nPDqv0EnlYnPoA T/Y191x1lt6ITWezDWqYqKR2arati7x3ld1iV6c59O2aWsCBYItm0TtezRyK3g4+4uQn kHFQ== Received: by 10.50.57.129 with SMTP id i1mr7452376igq.33.1336362995776; Sun, 06 May 2012 20:56:35 -0700 (PDT) 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.73.147 with SMTP id q19csp100095ibj; Sun, 6 May 2012 20:56:35 -0700 (PDT) Received: by 10.68.190.131 with SMTP id gq3mr5142189pbc.17.1336362995008; Sun, 06 May 2012 20:56:35 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id l3si16606810pbs.64.2012.05.06.20.56.34 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 06 May 2012 20:56:34 -0700 (PDT) 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 pbbrr4 with SMTP id rr4so7423271pbb.37 for ; Sun, 06 May 2012 20:56:34 -0700 (PDT) Received: by 10.68.135.226 with SMTP id pv2mr37204200pbb.127.1336362994653; Sun, 06 May 2012 20:56:34 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id pg6sm16883393pbb.41.2012.05.06.20.56.31 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 06 May 2012 20:56:33 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Make BT platform data structure static in mach-origen.c file Date: Mon, 7 May 2012 09:16:55 +0530 Message-Id: <1336362415-15144-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQmGI2SJRVjS1zf4vxXJtv0y/tHQMsJ9DseS0CD+6fKvjuXpMvCJbpWiZZ7FX5hOacEyyimu Adds missing storage class static to origen_bt_pdata structure. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/mach-origen.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-exynos/mach-origen.c b/arch/arm/mach-exynos/mach-origen.c index 4a8b3ff..df32cf4 100644 --- a/arch/arm/mach-exynos/mach-origen.c +++ b/arch/arm/mach-exynos/mach-origen.c @@ -607,7 +607,7 @@ static struct s3c_fb_platdata origen_lcd_pdata __initdata = { }; /* Bluetooth rfkill gpio platform data */ -struct rfkill_gpio_platform_data origen_bt_pdata = { +static struct rfkill_gpio_platform_data origen_bt_pdata = { .reset_gpio = EXYNOS4_GPX2(2), .shutdown_gpio = -1, .type = RFKILL_TYPE_BLUETOOTH,