| 
									
										
										
										
											2011-03-07 21:01:31 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * arch/arm/mach-tegra/board-paz00.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2011 Marc Dietrich <marvin24@gmx.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Based on board-harmony.c | 
					
						
							|  |  |  |  * Copyright (C) 2010 Google, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This software is licensed under the terms of the GNU General Public | 
					
						
							|  |  |  |  * License version 2, as published by the Free Software Foundation, and | 
					
						
							|  |  |  |  * may be copied, distributed, and modified under those terms. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							| 
									
										
										
										
											2011-08-07 21:00:52 +02:00
										 |  |  | #include <linux/rfkill-gpio.h>
 | 
					
						
							| 
									
										
										
										
											2011-03-07 21:01:31 +01:00
										 |  |  | #include "board.h"
 | 
					
						
							|  |  |  | #include "board-paz00.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-07 21:00:52 +02:00
										 |  |  | static struct rfkill_gpio_platform_data wifi_rfkill_platform_data = { | 
					
						
							|  |  |  | 	.name		= "wifi_rfkill", | 
					
						
							|  |  |  | 	.reset_gpio	= TEGRA_WIFI_RST, | 
					
						
							|  |  |  | 	.shutdown_gpio	= TEGRA_WIFI_PWRN, | 
					
						
							|  |  |  | 	.type	= RFKILL_TYPE_WLAN, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device wifi_rfkill_device = { | 
					
						
							|  |  |  | 	.name	= "rfkill_gpio", | 
					
						
							|  |  |  | 	.id	= -1, | 
					
						
							|  |  |  | 	.dev	= { | 
					
						
							|  |  |  | 		.platform_data = &wifi_rfkill_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-02 16:05:44 -06:00
										 |  |  | void __init tegra_paz00_wifikill_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	platform_device_register(&wifi_rfkill_device); | 
					
						
							|  |  |  | } |