Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35c79780 authored by Sean MacLennan's avatar Sean MacLennan Committed by Wim Van Sebroeck
Browse files

[WATCHDOG] powerpc: pika_wdt ident cannot be const



The watchdog_info struct cannot be a const since we dynamically fill
in the firmware version.

Signed-off-by: default avatarSean MacLennan <smaclennan@pikatech.com>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 5e11611a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ static struct {
	struct timer_list timer;	/* The timer that pings the watchdog */
} pikawdt_private;

static const struct watchdog_info ident = {
static struct watchdog_info ident = {
	.identity	= DRV_NAME,
	.options	= WDIOF_CARDRESET |
			  WDIOF_SETTIMEOUT |