twl4030_wdt.c (75bf465f0bc33e9b776a46d6a1b9b990f5fb7c37) | twl4030_wdt.c (099d387ebbcd70c6adc906ab5b66ef639c09dede) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Copyright (C) Nokia Corporation 4 * 5 * Written by Timo Kokkonen <timo.t.kokkonen at nokia.com> 6 */ 7 8#include <linux/module.h> 9#include <linux/types.h> 10#include <linux/slab.h> 11#include <linux/kernel.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Copyright (C) Nokia Corporation 4 * 5 * Written by Timo Kokkonen <timo.t.kokkonen at nokia.com> 6 */ 7 8#include <linux/module.h> 9#include <linux/types.h> 10#include <linux/slab.h> 11#include <linux/kernel.h> |
12#include <linux/mod_devicetable.h> |
|
12#include <linux/watchdog.h> 13#include <linux/platform_device.h> 14#include <linux/mfd/twl.h> 15 16#define TWL4030_WATCHDOG_CFG_REG_OFFS 0x3 17 18static bool nowayout = WATCHDOG_NOWAYOUT; 19module_param(nowayout, bool, 0); --- 108 unchanged lines hidden --- | 13#include <linux/watchdog.h> 14#include <linux/platform_device.h> 15#include <linux/mfd/twl.h> 16 17#define TWL4030_WATCHDOG_CFG_REG_OFFS 0x3 18 19static bool nowayout = WATCHDOG_NOWAYOUT; 20module_param(nowayout, bool, 0); --- 108 unchanged lines hidden --- |