summaryrefslogtreecommitdiff
path: root/Documentation/w1/masters/w1-gpio
blob: af5d3b4aa851501da0687d6414c0f070c574a7aa (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
Kernel driver w1-gpio
=====================

Author: Ville Syrjala <syrjala@sci.fi>


Description
-----------

GPIO 1-wire bus master driver. The driver uses the GPIO API to control the
wire and the GPIO pin can be specified using platform data.


Example (mach-at91)
-------------------

#include <linux/w1-gpio.h>

static struct w1_gpio_platform_data foo_w1_gpio_pdata = {
	.pin		= AT91_PIN_PB20,
	.is_open_drain	= 1,
};

static struct platform_device foo_w1_device = {
	.name			= "w1-gpio",
	.id			= -1,
	.dev.platform_data	= &foo_w1_gpio_pdata,
};

...
	at91_set_GPIO_periph(foo_w1_gpio_pdata.pin, 1);
	at91_set_multi_drive(foo_w1_gpio_pdata.pin, 1);
	platform_device_register(&foo_w1_device);
commit970d14e3989160ee9e97c7d75ecbc893fd29dab9 (patch) tree4a731cac4efedb17f86a912ec56c151d26792abe /sound/pci/ctxfi/cttimer.c parent7a308bb3016f57e5be11a677d15b821536419d36 (diff)
nvdimm: constify device_type structures
Declare device_type structure as const as it is only stored in the type field of a device structure. This field is of type const, so add const to declaration of device_type structure. File size before: text data bss dec hex filename 19278 3199 16 22493 57dd nvdimm/namespace_devs.o File size after: text data bss dec hex filename 19929 3160 16 23105 5a41 nvdimm/namespace_devs.o Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'sound/pci/ctxfi/cttimer.c')