mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
0376148f30
Based on 1 normalized pattern(s): license terms gnu general public license v2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 37 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190528170027.724130665@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18 lines
313 B
C
18 lines
313 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) ST Ericsson SA 2011
|
|
*
|
|
* STE Ux500 Watchdog platform data
|
|
*/
|
|
#ifndef __UX500_WDT_H
|
|
#define __UX500_WDT_H
|
|
|
|
/**
|
|
* struct ux500_wdt_data
|
|
*/
|
|
struct ux500_wdt_data {
|
|
unsigned int timeout;
|
|
bool has_28_bits_resolution;
|
|
};
|
|
|
|
#endif /* __UX500_WDT_H */
|