viawd.h (61af1d13936ec56808f62d13dd8698f73b440dc1) viawd.h (7e1f37e14e0cc34adcf134aac671d3ee0900a838)
1/*-
2 * Copyright (c) 2011 Fabien Thomas <fthomas@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

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

35};
36
37struct viawd_softc {
38 device_t dev;
39 device_t sb_dev;
40
41 int wd_rid;
42 struct resource *wd_res;
1/*-
2 * Copyright (c) 2011 Fabien Thomas <fthomas@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

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

35};
36
37struct viawd_softc {
38 device_t dev;
39 device_t sb_dev;
40
41 int wd_rid;
42 struct resource *wd_res;
43 bus_space_tag_t wd_bst;
44 bus_space_handle_t wd_bsh;
45
46 eventhandler_tag ev_tag;
47 unsigned int timeout;
48};
49
50#define VENDORID_VIA 0x1106
51#define DEVICEID_VT8251 0x3287
52#define DEVICEID_CX700 0x8324

--- 23 unchanged lines hidden ---
43
44 eventhandler_tag ev_tag;
45 unsigned int timeout;
46};
47
48#define VENDORID_VIA 0x1106
49#define DEVICEID_VT8251 0x3287
50#define DEVICEID_CX700 0x8324

--- 23 unchanged lines hidden ---