Skip to content

Commit f2bbda8

Browse files
committed
pinctrl: bcm2835: Persist outputs by default
Having accepted the upstream change to add the persist_gpio_outputs parameter, make it true by default. See: #6117 Signed-off-by: Phil Elwell <phil@raspberrypi.com>
1 parent 19b18f4 commit f2bbda8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/bcm/pinctrl-bcm2835.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ static const char * const irq_type_names[] = {
244244
[IRQ_TYPE_LEVEL_LOW] = "level-low",
245245
};
246246

247-
static bool persist_gpio_outputs;
247+
static bool persist_gpio_outputs = true;
248248
module_param(persist_gpio_outputs, bool, 0644);
249249
MODULE_PARM_DESC(persist_gpio_outputs, "Enable GPIO_OUT persistence when pin is freed");
250250

0 commit comments

Comments
 (0)