gef_wdt.c (19fdb9eefb21b72edbc365b838502780c392bad6) gef_wdt.c (4018294b53d1dae026880e45f174c1cc63b5d435)
1/*
2 * GE watchdog userspace interface
3 *
4 * Author: Martyn Welch <martyn.welch@ge.com>
5 *
6 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it

--- 289 unchanged lines hidden (view full) ---

298static const struct of_device_id gef_wdt_ids[] = {
299 {
300 .compatible = "gef,fpga-wdt",
301 },
302 {},
303};
304
305static struct of_platform_driver gef_wdt_driver = {
1/*
2 * GE watchdog userspace interface
3 *
4 * Author: Martyn Welch <martyn.welch@ge.com>
5 *
6 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it

--- 289 unchanged lines hidden (view full) ---

298static const struct of_device_id gef_wdt_ids[] = {
299 {
300 .compatible = "gef,fpga-wdt",
301 },
302 {},
303};
304
305static struct of_platform_driver gef_wdt_driver = {
306 .owner = THIS_MODULE,
307 .name = "gef_wdt",
308 .match_table = gef_wdt_ids,
306 .driver = {
307 .name = "gef_wdt",
308 .owner = THIS_MODULE,
309 .of_match_table = gef_wdt_ids,
310 },
309 .probe = gef_wdt_probe,
310};
311
312static int __init gef_wdt_init(void)
313{
314 printk(KERN_INFO "GE watchdog driver\n");
315 return of_register_platform_driver(&gef_wdt_driver);
316}

--- 14 unchanged lines hidden ---
311 .probe = gef_wdt_probe,
312};
313
314static int __init gef_wdt_init(void)
315{
316 printk(KERN_INFO "GE watchdog driver\n");
317 return of_register_platform_driver(&gef_wdt_driver);
318}

--- 14 unchanged lines hidden ---