PR/33014: arnaud degroote: remove SET/ISSET/CLR defines

This commit is contained in:
christos 2006-03-06 19:57:03 +00:00
parent fa2d4a51e2
commit 8f1c5de2eb
1 changed files with 2 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sa11x0_com.c,v 1.28 2006/03/04 17:22:06 peter Exp $ */
/* $NetBSD: sa11x0_com.c,v 1.29 2006/03/06 19:57:03 christos Exp $ */
/*-
* Copyright (c) 1998, 1999, 2001 The NetBSD Foundation, Inc.
@ -71,7 +71,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sa11x0_com.c,v 1.28 2006/03/04 17:22:06 peter Exp $");
__KERNEL_RCSID(0, "$NetBSD: sa11x0_com.c,v 1.29 2006/03/06 19:57:03 christos Exp $");
#include "opt_com.h"
#include "opt_ddb.h"
@ -185,10 +185,6 @@ static void sacom_j720_init(struct sa11x0_softc *, struct sacom_softc *);
#define COM_LOCK(sc)
#define COM_UNLOCK(sc)
#define SET(t, f) (t) |= (f)
#define CLR(t, f) (t) &= ~(f)
#define ISSET(t, f) ((t) & (f))
int sacomintr(void *);
int sacomcngetc(dev_t);
void sacomcnputc(dev_t, int);