* OSST driver compile fixes.
@ 2002-01-06 13:03 Gertjan van Wingerde
0 siblings, 0 replies; only message in thread
From: Gertjan van Wingerde @ 2002-01-06 13:03 UTC (permalink / raw)
To: Linus Torvalds, osst; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 246 bytes --]
Hi,
The attached patch contains the compile fixes regarding the kdev_t
changes for the OSST driver.
--
Best regards/MvG,
Gertjan
----------
Gertjan van Wingerde
Geessinkweg 177
7544 TX Enschede
The Netherlands
E-mail: gwingerde@home.nl
[-- Attachment #2: linux-osst.diff --]
[-- Type: text/plain, Size: 1900 bytes --]
diff -u --recursive linux-2.5.2-pre8/drivers/scsi/osst.c linux-2.5.x/drivers/scsi/osst.c
--- linux-2.5.2-pre8/drivers/scsi/osst.c Tue Jan 1 18:28:53 2002
+++ linux-2.5.x/drivers/scsi/osst.c Sat Jan 5 13:06:55 2002
@@ -125,8 +125,8 @@
#define OSST_TIMEOUT (200 * HZ)
#define OSST_LONG_TIMEOUT (1800 * HZ)
-#define TAPE_NR(x) (MINOR(x) & ~(128 | ST_MODE_MASK))
-#define TAPE_MODE(x) ((MINOR(x) & ST_MODE_MASK) >> ST_MODE_SHIFT)
+#define TAPE_NR(x) (minor(x) & ~(128 | ST_MODE_MASK))
+#define TAPE_MODE(x) ((minor(x) & ST_MODE_MASK) >> ST_MODE_SHIFT)
/* Internal ioctl to set both density (uppermost 8 bits) and blocksize (lower
24 bits) */
@@ -4021,7 +4021,7 @@
if (cmd_in == MTOFFL || cmd_in == MTUNLOAD)
STp->rew_at_close = 0;
else if (cmd_in == MTLOAD) {
-/* STp->rew_at_close = (MINOR(inode->i_rdev) & 0x80) == 0; FIXME */
+/* STp->rew_at_close = (minor(inode->i_rdev) & 0x80) == 0; FIXME */
for (i=0; i < ST_NBR_PARTITIONS; i++) {
STp->ps[i].rw = ST_IDLE;
STp->ps[i].last_block_valid = FALSE;/* FIXME - where else is this field maintained? */
@@ -4103,7 +4103,7 @@
return (-EBUSY);
}
STp->in_use = 1;
- STp->rew_at_close = (MINOR(inode->i_rdev) & 0x80) == 0;
+ STp->rew_at_close = (minor(inode->i_rdev) & 0x80) == 0;
if (STp->device->host->hostt->module)
__MOD_INC_USE_COUNT(STp->device->host->hostt->module);
@@ -4124,7 +4124,7 @@
flags = filp->f_flags;
STp->write_prot = ((flags & O_ACCMODE) == O_RDONLY);
- STp->raw = (MINOR(inode->i_rdev) & 0x40) != 0;
+ STp->raw = (minor(inode->i_rdev) & 0x40) != 0;
/* Allocate a buffer for this user */
need_dma_buffer = STp->restr_dma;
@@ -5407,7 +5407,7 @@
#endif
tpnt->device = SDp;
- tpnt->devt = MKDEV(MAJOR_NR, i);
+ tpnt->devt = mk_kdev(MAJOR_NR, i);
tpnt->dirty = 0;
tpnt->in_use = 0;
tpnt->drv_buffer = 1; /* Try buffering if no mode sense */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-01-06 13:03 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-06 13:03 OSST driver compile fixes Gertjan van Wingerde
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.