diff options
Diffstat (limited to 'sys/dev/ic/cy.c')
-rw-r--r-- | sys/dev/ic/cy.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/dev/ic/cy.c b/sys/dev/ic/cy.c index 9117d0870ad..dbfab37de69 100644 --- a/sys/dev/ic/cy.c +++ b/sys/dev/ic/cy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cy.c,v 1.15 2001/08/20 04:41:39 smart Exp $ */ +/* $OpenBSD: cy.c,v 1.16 2002/01/30 20:45:34 nordin Exp $ */ /* * cy.c @@ -57,12 +57,6 @@ #include <dev/ic/cyreg.h> -/* Macros to clear/set/test flags. */ -#define SET(t, f) (t) |= (f) -#define CLR(t, f) (t) &= ~(f) -#define ISSET(t, f) ((t) & (f)) - - void cy_attach __P((struct device *, struct device *, void *)); int cy_probe_common __P((int, bus_space_tag_t, bus_space_handle_t, int)); int cy_intr __P((void *)); |