Remove SET/CLR/ISSET macros.

This commit is contained in:
rjs 2006-03-06 20:21:25 +00:00
parent ed3fe49dd5
commit 71e3b5b4c8
1 changed files with 1 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sscom_var.h,v 1.6 2005/12/11 12:16:51 christos Exp $ */
/* $NetBSD: sscom_var.h,v 1.7 2006/03/06 20:21:25 rjs Exp $ */
/*
* Copyright (c) 2002, 2003 Fujitsu Component Limited
@ -188,11 +188,6 @@ struct sscom_softc {
void (* set_modem_control)( struct sscom_softc * );
};
/* Macros to clear/set/test flags. */
#define SET(t, f) (t) |= (f)
#define CLR(t, f) (t) &= ~(f)
#define ISSET(t, f) ((t) & (f))
/* UART register address, etc. */
struct sscom_uart_info {
int unit;