Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  *      intel-mid_wdt: generic Intel MID SCU watchdog driver
0004  *
0005  *      Copyright (C) 2014 Intel Corporation. All rights reserved.
0006  *      Contact: David Cohen <david.a.cohen@linux.intel.com>
0007  */
0008 
0009 #ifndef __INTEL_MID_WDT_H__
0010 #define __INTEL_MID_WDT_H__
0011 
0012 #include <linux/platform_device.h>
0013 
0014 struct intel_mid_wdt_pdata {
0015     int irq;
0016     int (*probe)(struct platform_device *pdev);
0017 };
0018 
0019 #endif /*__INTEL_MID_WDT_H__*/