diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-12-25 20:57:00 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-12-25 20:57:00 +0000 |
commit | 7fdd0b4f5f1150954e76eae066b86bdec5c40fb5 (patch) | |
tree | aac171e2a3c49267c1817fda922de073377c1abd /sys/arch/hp300/dev/hdvar.h | |
parent | 7ab7d0b1d1e067c9900725b57ccd0964daa1ff60 (diff) |
Turn xxUNIT, xxPARt, xxLABELDEV macro names into uppercase.
Diffstat (limited to 'sys/arch/hp300/dev/hdvar.h')
-rw-r--r-- | sys/arch/hp300/dev/hdvar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp300/dev/hdvar.h b/sys/arch/hp300/dev/hdvar.h index 2ef6c939d25..a69b31f3d18 100644 --- a/sys/arch/hp300/dev/hdvar.h +++ b/sys/arch/hp300/dev/hdvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hdvar.h,v 1.3 2001/05/01 16:51:09 millert Exp $ */ +/* $OpenBSD: hdvar.h,v 1.4 2002/12/25 20:56:59 miod Exp $ */ /* $NetBSD: rdvar.h,v 1.6 1997/01/30 09:14:19 thorpej Exp $ */ /* @@ -92,9 +92,9 @@ struct hd_softc { #define HDF_WANTED 0x20 #define HDF_WLABEL 0x40 -#define hdunit(x) DISKUNIT(x) -#define hdpart(x) DISKPART(x) -#define hdlabdev(d) MAKEDISKDEV(major(d), hdunit(d), RAW_PART) +#define HDUNIT(x) DISKUNIT(x) +#define HDPART(x) DISKPART(x) +#define HDLABELDEV(d) MAKEDISKDEV(major(d), HDUNIT(d), RAW_PART) #define b_cylin b_resid |