Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
14149d7e
Commit
14149d7e
authored
Oct 17, 2002
by
Alexander Viro
Committed by
Linus Torvalds
Oct 17, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] mcd.c
* switched to private queue * set ->queue
parent
06869782
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
drivers/cdrom/mcd.c
drivers/cdrom/mcd.c
+8
-8
No files found.
drivers/cdrom/mcd.c
View file @
14149d7e
...
@@ -102,7 +102,7 @@
...
@@ -102,7 +102,7 @@
#include <asm/uaccess.h>
#include <asm/uaccess.h>
#define MAJOR_NR MITSUMI_CDROM_MAJOR
#define MAJOR_NR MITSUMI_CDROM_MAJOR
#define
DEVICE_NR(device) (minor(device)
)
#define
QUEUE (&mcd_queue
)
#include <linux/blk.h>
#include <linux/blk.h>
#define mcd_port mcd
/* for compatible parameter passing with "insmod" */
#define mcd_port mcd
/* for compatible parameter passing with "insmod" */
...
@@ -116,6 +116,7 @@ static int mcd1xhold;
...
@@ -116,6 +116,7 @@ static int mcd1xhold;
/* Is the drive connected properly and responding?? */
/* Is the drive connected properly and responding?? */
static
int
mcdPresent
;
static
int
mcdPresent
;
static
struct
request_queue
mcd_queue
;
#define QUICK_LOOP_DELAY udelay(45)
/* use udelay */
#define QUICK_LOOP_DELAY udelay(45)
/* use udelay */
#define QUICK_LOOP_COUNT 20
#define QUICK_LOOP_COUNT 20
...
@@ -123,7 +124,6 @@ static int mcdPresent;
...
@@ -123,7 +124,6 @@ static int mcdPresent;
static
int
current_valid
(
void
)
static
int
current_valid
(
void
)
{
{
return
!
blk_queue_empty
(
QUEUE
)
&&
return
!
blk_queue_empty
(
QUEUE
)
&&
major
(
CURRENT
->
rq_dev
)
==
MAJOR_NR
&&
CURRENT
->
cmd
==
READ
&&
CURRENT
->
cmd
==
READ
&&
CURRENT
->
sector
!=
-
1
;
CURRENT
->
sector
!=
-
1
;
}
}
...
@@ -188,9 +188,9 @@ static void mcd_release(struct cdrom_device_info *cdi);
...
@@ -188,9 +188,9 @@ static void mcd_release(struct cdrom_device_info *cdi);
static
int
mcd_media_changed
(
struct
cdrom_device_info
*
cdi
,
int
disc_nr
);
static
int
mcd_media_changed
(
struct
cdrom_device_info
*
cdi
,
int
disc_nr
);
static
int
mcd_tray_move
(
struct
cdrom_device_info
*
cdi
,
int
position
);
static
int
mcd_tray_move
(
struct
cdrom_device_info
*
cdi
,
int
position
);
static
spinlock_t
mcd_spinlock
=
SPIN_LOCK_UNLOCKED
;
static
spinlock_t
mcd_spinlock
=
SPIN_LOCK_UNLOCKED
;
int
mcd_audio_ioctl
(
struct
cdrom_device_info
*
cdi
,
unsigned
int
cmd
,
static
int
mcd_audio_ioctl
(
struct
cdrom_device_info
*
cdi
,
unsigned
int
cmd
,
void
*
arg
);
void
*
arg
);
int
mcd_drive_status
(
struct
cdrom_device_info
*
cdi
,
int
slot_nr
);
static
int
mcd_drive_status
(
struct
cdrom_device_info
*
cdi
,
int
slot_nr
);
static
struct
timer_list
mcd_timer
;
static
struct
timer_list
mcd_timer
;
...
@@ -1076,8 +1076,7 @@ int __init mcd_init(void)
...
@@ -1076,8 +1076,7 @@ int __init mcd_init(void)
goto
out_region
;
goto
out_region
;
}
}
blk_init_queue
(
BLK_DEFAULT_QUEUE
(
MAJOR_NR
),
do_mcd_request
,
blk_init_queue
(
&
mcd_queue
,
do_mcd_request
,
&
mcd_spinlock
);
&
mcd_spinlock
);
/* check for card */
/* check for card */
...
@@ -1154,6 +1153,7 @@ int __init mcd_init(void)
...
@@ -1154,6 +1153,7 @@ int __init mcd_init(void)
printk
(
KERN_ERR
"mcd: Unable to register Mitsumi CD-ROM.
\n
"
);
printk
(
KERN_ERR
"mcd: Unable to register Mitsumi CD-ROM.
\n
"
);
goto
out_cdrom
;
goto
out_cdrom
;
}
}
disk
->
queue
=
&
mcd_queue
;
add_disk
(
disk
);
add_disk
(
disk
);
printk
(
msg
);
printk
(
msg
);
return
0
;
return
0
;
...
@@ -1164,7 +1164,7 @@ int __init mcd_init(void)
...
@@ -1164,7 +1164,7 @@ int __init mcd_init(void)
release_region
(
mcd_port
,
4
);
release_region
(
mcd_port
,
4
);
out_region:
out_region:
unregister_blkdev
(
MAJOR_NR
,
"mcd"
);
unregister_blkdev
(
MAJOR_NR
,
"mcd"
);
blk_cleanup_queue
(
BLK_DEFAULT_QUEUE
(
MAJOR_NR
)
);
blk_cleanup_queue
(
&
mcd_queue
);
put_disk
(
disk
);
put_disk
(
disk
);
return
-
EIO
;
return
-
EIO
;
}
}
...
@@ -1543,7 +1543,7 @@ void __exit mcd_exit(void)
...
@@ -1543,7 +1543,7 @@ void __exit mcd_exit(void)
printk
(
KERN_WARNING
"Can't unregister major mcd
\n
"
);
printk
(
KERN_WARNING
"Can't unregister major mcd
\n
"
);
return
;
return
;
}
}
blk_cleanup_queue
(
BLK_DEFAULT_QUEUE
(
MAJOR_NR
)
);
blk_cleanup_queue
(
&
mcd_queue
);
del_timer_sync
(
&
mcd_timer
);
del_timer_sync
(
&
mcd_timer
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment