1/*
2 *      intel-mid_wdt: generic Intel MID SCU watchdog driver
3 *
4 *      Copyright (C) 2014 Intel Corporation. All rights reserved.
5 *      Contact: David Cohen <david.a.cohen@linux.intel.com>
6 *
7 *      This program is free software; you can redistribute it and/or
8 *      modify it under the terms of version 2 of the GNU General
9 *      Public License as published by the Free Software Foundation.
10 */
11
12#ifndef __INTEL_MID_WDT_H__
13#define __INTEL_MID_WDT_H__
14
15#include <linux/platform_device.h>
16
17struct intel_mid_wdt_pdata {
18	int irq;
19	int (*probe)(struct platform_device *pdev);
20};
21
22#endif /*__INTEL_MID_WDT_H__*/
23