diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-04-07 13:39:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-04-07 13:39:03 +0000 |
commit | 6384871272859e18f8ca1e245ccd18741738bfa9 (patch) | |
tree | 04f9c075715bf9decc477e475835dbb0e75558f0 /sys/arch/mvme88k | |
parent | 35ac86e2e289bcb588934732e59b0ba8da0df34b (diff) |
add DISKMINOR(), and repair redefinitions
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/include/disklabel.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/include/disklabel.h b/sys/arch/mvme88k/include/disklabel.h index 7bb8062799f..2d9dba98585 100644 --- a/sys/arch/mvme88k/include/disklabel.h +++ b/sys/arch/mvme88k/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.4 1999/02/09 06:36:26 smurph Exp $ */ +/* $OpenBSD: disklabel.h,v 1.5 2000/04/07 13:39:02 deraadt Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Copyright (c) 1995 Dale Rahn. @@ -49,8 +49,6 @@ */ #define DISKUNIT(dev) (minor(dev) / MAXPARTITIONS) #define DISKPART(dev) (minor(dev) % MAXPARTITIONS) -#define MAKEDISKDEV(maj, unit, part) \ - (makedev((maj), ((unit) * MAXPARTITIONS) + (part))) /* * Note: this structure is exactly 512 bytes in size. If you move fields |