intel-mid_wdt.h 620 B

1234567891011121314151617181920212223
  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. #ifndef __INTEL_MID_WDT_H__
  12. #define __INTEL_MID_WDT_H__
  13. #include <linux/platform_device.h>
  14. struct intel_mid_wdt_pdata {
  15. int irq;
  16. int (*probe)(struct platform_device *pdev);
  17. };
  18. #endif /*__INTEL_MID_WDT_H__*/