Merge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[deliverable/linux.git] / arch / arm / mach-tegra / board-paz00.c
CommitLineData
65b935aa
MD
1/*
2 * arch/arm/mach-tegra/board-paz00.c
3 *
4 * Copyright (C) 2011 Marc Dietrich <marvin24@gmx.de>
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
0a6d3158 20#include <linux/gpio/machine.h>
a0524acc 21#include <linux/platform_device.h>
9aaa15a7 22#include <linux/rfkill-gpio.h>
a0524acc 23
65b935aa 24#include "board.h"
65b935aa 25
9aaa15a7 26static struct rfkill_gpio_platform_data wifi_rfkill_platform_data = {
7bd49449 27 .name = "wifi_rfkill",
9aaa15a7
MD
28 .type = RFKILL_TYPE_WLAN,
29};
30
31static struct platform_device wifi_rfkill_device = {
32 .name = "rfkill_gpio",
33 .id = -1,
34 .dev = {
35 .platform_data = &wifi_rfkill_platform_data,
36 },
37};
38
7bb3ed21
HK
39static struct gpiod_lookup_table wifi_gpio_lookup = {
40 .dev_id = "rfkill_gpio",
41 .table = {
42 GPIO_LOOKUP_IDX("tegra-gpio", 25, NULL, 0, 0),
43 GPIO_LOOKUP_IDX("tegra-gpio", 85, NULL, 1, 0),
44 { },
45 },
46};
47
b64a02c6
SW
48void __init tegra_paz00_wifikill_init(void)
49{
7bb3ed21 50 gpiod_add_lookup_table(&wifi_gpio_lookup);
b64a02c6
SW
51 platform_device_register(&wifi_rfkill_device);
52}
This page took 0.224059 seconds and 5 git commands to generate.