aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-3.10/0130-1-wire-Add-support-for-configuring-pin-for-w1-gpio-k.patch
blob: 30c01284755aebc9001d59c007f8b49d86c2b024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From 539f6945d211e91b73bd098b11270beb766c8475 Mon Sep 17 00:00:00 2001
From: popcornmix <popcornmix@gmail.com>
Date: Thu, 19 Dec 2013 18:05:31 +0000
Subject: [PATCH 130/174] 1-wire: Add support for configuring pin for w1-gpio
 kernel module See: https://github.com/raspberrypi/linux/pull/457

---
 arch/arm/mach-bcm2708/bcm2708.c | 3 +++
 1 file changed, 3 insertions(+)

--- a/arch/arm/mach-bcm2708/bcm2708.c
+++ b/arch/arm/mach-bcm2708/bcm2708.c
@@ -84,6 +84,7 @@
 static unsigned boardrev, serial;
 static unsigned uart_clock;
 static unsigned reboot_part = 0;
+static unsigned w1_gpio_pin = W1_GPIO;
 
 static void __init bcm2708_init_led(void);
 
@@ -766,6 +767,7 @@ void __init bcm2708_init(void)
 	bcm_register_device(&bcm2708_gpio_device);
 #endif
 #if defined(CONFIG_W1_MASTER_GPIO) || defined(CONFIG_W1_MASTER_GPIO_MODULE)
+	w1_gpio_pdata.pin = w1_gpio_pin;
 	platform_device_register(&w1_device);
 #endif
 	bcm_register_device(&bcm2708_systemtimer_device);
@@ -983,3 +985,4 @@ module_param(boardrev, uint, 0644);
 module_param(serial, uint, 0644);
 module_param(uart_clock, uint, 0644);
 module_param(reboot_part, uint, 0644);
+module_param(w1_gpio_pin, uint, 0644);