Deleted Added
full compact
amdsbwd.c (241885) amdsbwd.c (246128)
1/*-
2 * Copyright (c) 2009 Andriy Gapon <avg@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

40 * Please see the following for Watchdog Resource Table specification:
41 * - Watchdog Timer Hardware Requirements for Windows Server 2003 (WDRT)
42 * http://www.microsoft.com/whdc/system/sysinternals/watchdog.mspx
43 * AMD SB600/SB7xx/SB8xx watchdog hardware seems to conform to the above
44 * specifications, but the table hasn't been spotted in the wild yet.
45 */
46
47#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2009 Andriy Gapon <avg@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

40 * Please see the following for Watchdog Resource Table specification:
41 * - Watchdog Timer Hardware Requirements for Windows Server 2003 (WDRT)
42 * http://www.microsoft.com/whdc/system/sysinternals/watchdog.mspx
43 * AMD SB600/SB7xx/SB8xx watchdog hardware seems to conform to the above
44 * specifications, but the table hasn't been spotted in the wild yet.
45 */
46
47#include <sys/cdefs.h>
48__FBSDID("$FreeBSD: head/sys/dev/amdsbwd/amdsbwd.c 241885 2012-10-22 13:06:09Z eadler $");
48__FBSDID("$FreeBSD: head/sys/dev/amdsbwd/amdsbwd.c 246128 2013-01-30 18:01:20Z sbz $");
49
50#include <sys/param.h>
51#include <sys/kernel.h>
52#include <sys/module.h>
53#include <sys/systm.h>
54#include <sys/sysctl.h>
55#include <sys/bus.h>
56#include <machine/bus.h>

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

134static device_method_t amdsbwd_methods[] = {
135 DEVMETHOD(device_identify, amdsbwd_identify),
136 DEVMETHOD(device_probe, amdsbwd_probe),
137 DEVMETHOD(device_attach, amdsbwd_attach),
138 DEVMETHOD(device_detach, amdsbwd_detach),
139#if 0
140 DEVMETHOD(device_shutdown, amdsbwd_detach),
141#endif
49
50#include <sys/param.h>
51#include <sys/kernel.h>
52#include <sys/module.h>
53#include <sys/systm.h>
54#include <sys/sysctl.h>
55#include <sys/bus.h>
56#include <machine/bus.h>

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

134static device_method_t amdsbwd_methods[] = {
135 DEVMETHOD(device_identify, amdsbwd_identify),
136 DEVMETHOD(device_probe, amdsbwd_probe),
137 DEVMETHOD(device_attach, amdsbwd_attach),
138 DEVMETHOD(device_detach, amdsbwd_detach),
139#if 0
140 DEVMETHOD(device_shutdown, amdsbwd_detach),
141#endif
142 {0, 0}
142 DEVMETHOD_END
143};
144
145static devclass_t amdsbwd_devclass;
146static driver_t amdsbwd_driver = {
147 "amdsbwd",
148 amdsbwd_methods,
149 sizeof(struct amdsbwd_softc)
150};

--- 371 unchanged lines hidden ---
143};
144
145static devclass_t amdsbwd_devclass;
146static driver_t amdsbwd_driver = {
147 "amdsbwd",
148 amdsbwd_methods,
149 sizeof(struct amdsbwd_softc)
150};

--- 371 unchanged lines hidden ---