Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
board-paz00.c
Go to the documentation of this file.
1 /*
2  * arch/arm/mach-tegra/board-paz00.c
3  *
4  * Copyright (C) 2011 Marc Dietrich <[email protected]>
5  *
6  * Based on board-harmony.c
7  * Copyright (C) 2010 Google, Inc.
8  *
9  * This software is licensed under the terms of the GNU General Public
10  * License version 2, as published by the Free Software Foundation, and
11  * may be copied, distributed, and modified under those terms.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  */
19 
20 #include <linux/platform_device.h>
21 #include <linux/rfkill-gpio.h>
22 #include "board.h"
23 #include "board-paz00.h"
24 
25 static struct rfkill_gpio_platform_data wifi_rfkill_platform_data = {
26  .name = "wifi_rfkill",
27  .reset_gpio = TEGRA_WIFI_RST,
28  .shutdown_gpio = TEGRA_WIFI_PWRN,
29  .type = RFKILL_TYPE_WLAN,
30 };
31 
32 static struct platform_device wifi_rfkill_device = {
33  .name = "rfkill_gpio",
34  .id = -1,
35  .dev = {
36  .platform_data = &wifi_rfkill_platform_data,
37  },
38 };
39 
41 {
42  platform_device_register(&wifi_rfkill_device);
43 }