diff options
author | ache <ache@FreeBSD.org> | 1994-08-29 21:37:49 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-08-29 21:37:49 +0000 |
commit | 1f5f925f3738b74e661ca55d33e35106c63b581b (patch) | |
tree | 26238e0aa026d11bb5cc2c032c9d9e8ab0ba2a13 /sys/scsi | |
parent | c9598ae00eb176231e63363df2e5157e4b72ec39 (diff) | |
download | FreeBSD-src-1f5f925f3738b74e661ca55d33e35106c63b581b.zip FreeBSD-src-1f5f925f3738b74e661ca55d33e35106c63b581b.tar.gz |
RAW_PART=2
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/sd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c index 65b20df..220c015 100644 --- a/sys/scsi/sd.c +++ b/sys/scsi/sd.c @@ -14,7 +14,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992 * - * $Id: sd.c,v 1.24 1994/05/25 09:13:32 rgrimes Exp $ + * $Id: sd.c,v 1.25 1994/08/27 16:14:34 davidg Exp $ */ #define SPLSD splbio @@ -60,7 +60,7 @@ int Debugger(); #define MAKESDDEV(maj, unit, part) (makedev(maj,((unit<<3)+part))) #define UNITSHIFT 3 #define PARTITION(z) (minor(z) & 0x07) -#define RAW_PART 3 +#define RAW_PART 2 #define UNIT(z) ( (minor(z) >> UNITSHIFT) ) #define WHOLE_DISK(unit) ( (unit << UNITSHIFT) + RAW_PART ) |