On Sun, 10 Jan 2016, richard.dorsch@xxxxxxxxx wrote: > From: Richard Vidal-Dorsch <richard.dorsch@xxxxxxxxx> Some more information required about the device here. > Signed-off-by: Richard Vidal-Dorsch <richard.dorsch@xxxxxxxxx> > --- > drivers/watchdog/Kconfig | 12 ++ > drivers/watchdog/Makefile | 2 + > drivers/watchdog/imanager-ec-wdt.c | 170 +++++++++++++++++++ > drivers/watchdog/imanager-wdt.c | 333 +++++++++++++++++++++++++++++++++++++ > include/linux/mfd/imanager/wdt.h | 37 +++++ Please relocate this to include/linux/watchdog. > 5 files changed, 554 insertions(+) > create mode 100644 drivers/watchdog/imanager-ec-wdt.c > create mode 100644 drivers/watchdog/imanager-wdt.c > create mode 100644 include/linux/mfd/imanager/wdt.h [...] > diff --git a/include/linux/mfd/imanager/wdt.h b/include/linux/mfd/imanager/wdt.h > new file mode 100644 > index 0000000..eb709b7 > --- /dev/null > +++ b/include/linux/mfd/imanager/wdt.h > @@ -0,0 +1,37 @@ > +/* > + * Advantech iManager Watchdog core > + * > + * Copyright (C) 2016 Advantech Co., Ltd., Irvine, CA, USA > + * Author: Richard Vidal-Dorsch <richard.dorsch@xxxxxxxxxxxxx> > + * > + * This program is free software; you can redistribute it and/or modify it > + * under the terms of the GNU General Public License as published by the > + * Free Software Foundation; either version 2 of the License, or (at your > + * option) any later version. > + */ > + > +#ifndef __WDT_H__ > +#define __WDT_H__ These need to be less generic. > +#include <linux/types.h> > + > +enum wdt_event { > + DELAY, > + PWRBTN, > + NMI, > + RESET, > + WDPIN, > + SCI, > +}; Unless shared between other source files, this should probably move into the driver. > +int wdt_core_init(void); > + > +int wdt_core_set_timeout(enum wdt_event type, u32 timeout); > + > +int wdt_core_disable_all(void); > +int wdt_core_start_timer(void); > +int wdt_core_stop_timer(void); > +int wdt_core_reset_timer(void); > +int wdt_core_stop_boot_timer(void); What's the point of these? > +#endif > -- > 2.7.0 > -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html