xref: /linux/include/linux/platform_data/x86/intel-mid_wdt.h (revision 3a39d672e7f48b8d6b91a09afa4b55352773b4b5)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  *      intel-mid_wdt: generic Intel MID SCU watchdog driver
4  *
5  *      Copyright (C) 2014 Intel Corporation. All rights reserved.
6  *      Contact: David Cohen <david.a.cohen@linux.intel.com>
7  */
8 
9 #ifndef __PLATFORM_X86_INTEL_MID_WDT_H_
10 #define __PLATFORM_X86_INTEL_MID_WDT_H_
11 
12 #include <linux/platform_device.h>
13 
14 struct intel_mid_wdt_pdata {
15 	int irq;
16 	int (*probe)(struct platform_device *pdev);
17 };
18 
19 #endif	/* __PLATFORM_X86_INTEL_MID_WDT_H_ */
20