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