From patchwork Tue Sep 28 18:20:28 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ohad Ben Cohen X-Patchwork-Id: 215572 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8SIMne9027920 for ; Tue, 28 Sep 2010 18:22:49 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751081Ab0I1SWs (ORCPT ); Tue, 28 Sep 2010 14:22:48 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:58104 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755833Ab0I1SWr (ORCPT ); Tue, 28 Sep 2010 14:22:47 -0400 Received: by bwz11 with SMTP id 11so4378260bwz.19 for ; Tue, 28 Sep 2010 11:22:45 -0700 (PDT) Received: by 10.204.63.9 with SMTP id z9mr336490bkh.66.1285698165695; Tue, 28 Sep 2010 11:22:45 -0700 (PDT) Received: from localhost.localdomain (46-116-86-31.bb.netvision.net.il [46.116.86.31]) by mx.google.com with ESMTPS id 24sm5855866bkr.7.2010.09.28.11.22.43 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 28 Sep 2010 11:22:44 -0700 (PDT) From: Ohad Ben-Cohen To: Cc: Luciano Coelho , "John W. Linville" , Ohad Ben-Cohen Subject: [PATCH] wl12xx: fix non-wl12xx build scenarios Date: Tue, 28 Sep 2010 20:20:28 +0200 Message-Id: <1285698028-21034-1-git-send-email-ohad@wizery.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1285697383.4728.10.camel@powerslave> References: <1285697383.4728.10.camel@powerslave> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 28 Sep 2010 18:22:49 +0000 (UTC) diff --git a/include/linux/wl12xx.h b/include/linux/wl12xx.h index 95deae3..4f902e1 100644 --- a/include/linux/wl12xx.h +++ b/include/linux/wl12xx.h @@ -32,7 +32,20 @@ struct wl12xx_platform_data { int board_ref_clock; }; +#ifdef CONFIG_WL12XX_PLATFORM_DATA + int wl12xx_set_platform_data(const struct wl12xx_platform_data *data); + +#else + +static inline +int wl12xx_set_platform_data(const struct wl12xx_platform_data *data) +{ + return -ENOSYS; +} + +#endif + const struct wl12xx_platform_data *wl12xx_get_platform_data(void); #endif