Source
287
287
static void acq_shutdown(struct platform_device *dev)
288
288
{
289
289
/* Turn the WDT off if we have a soft shutdown */
290
290
acq_stop();
291
291
}
292
292
293
293
static struct platform_driver acquirewdt_driver = {
294
294
.remove = acq_remove,
295
295
.shutdown = acq_shutdown,
296
296
.driver = {
297
-
.owner = THIS_MODULE,
298
297
.name = DRV_NAME,
299
298
},
300
299
};
301
300
302
301
static int __init acq_init(void)
303
302
{
304
303
int err;
305
304
306
305
pr_info("WDT driver for Acquire single board computer initialising\n");
307
306