summaryrefslogtreecommitdiffstats
path: root/sys/dev/wds
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2000-10-27 11:45:49 +0000
committerphk <phk@FreeBSD.org>2000-10-27 11:45:49 +0000
commit54ca48450cf20c453a092aa95d086cd5c5751fcf (patch)
tree479cfa046c848adf9e8ada76b004eeda743154db /sys/dev/wds
parentea5581599fd86937f5f773c8e66aedd6a3524383 (diff)
downloadFreeBSD-src-54ca48450cf20c453a092aa95d086cd5c5751fcf.zip
FreeBSD-src-54ca48450cf20c453a092aa95d086cd5c5751fcf.tar.gz
Convert all users of fldoff() to offsetof(). fldoff() is bad
because it only takes a struct tag which makes it impossible to use unions, typedefs etc. Define __offsetof() in <machine/ansi.h> Define offsetof() in terms of __offsetof() in <stddef.h> and <sys/types.h> Remove myriad of local offsetof() definitions. Remove includes of <stddef.h> in kernel code. NB: Kernelcode should *never* include from /usr/include ! Make <sys/queue.h> include <machine/ansi.h> to avoid polluting the API. Deprecate <struct.h> with a warning. The warning turns into an error on 01-12-2000 and the file gets removed entirely on 01-01-2001. Paritials reviews by: various. Significant brucifications by: bde
Diffstat (limited to 'sys/dev/wds')
-rw-r--r--sys/dev/wds/wd7000.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/wds/wd7000.c b/sys/dev/wds/wd7000.c
index abba71d3..c09532a 100644
--- a/sys/dev/wds/wd7000.c
+++ b/sys/dev/wds/wd7000.c
@@ -159,10 +159,6 @@
#include <isa/isavar.h>
#include <isa/pnpvar.h>
-/* somehow offsetof() was lost in FreeBSD 5.0, so declare it */
-#undef offsetof
-#define offsetof(type, field) ( (int)( &((type *)0)->field ) )
-
#define WDSTOPHYS(wp, a) ( ((u_long)a) - ((u_long)wp->dx) + ((u_long)wp->dx_p) )
#define WDSTOVIRT(wp, a) ( ((char *)a) - ((char*)wp->dx_p) + ((char *)wp->dx) )
OpenPOWER on IntegriCloud