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
nexedi
linux
Commits
33e2f222
Commit
33e2f222
authored
Apr 20, 2003
by
Christoph Hellwig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] devfs: swim3
parent
26deacb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
drivers/block/swim3.c
drivers/block/swim3.c
+2
-5
No files found.
drivers/block/swim3.c
View file @
33e2f222
...
...
@@ -971,15 +971,13 @@ static struct block_device_operations floppy_fops = {
.
revalidate_disk
=
floppy_revalidate
,
};
static
devfs_handle_t
floppy_devfs_handle
;
int
swim3_init
(
void
)
{
struct
device_node
*
swim
;
int
err
=
-
ENOMEM
;
int
i
;
floppy_devfs_handle
=
devfs_mk_dir
(
"floppy"
);
devfs_mk_dir
(
"floppy"
);
swim
=
find_devices
(
"floppy"
);
while
(
swim
&&
(
floppy_count
<
MAX_FLOPPIES
))
...
...
@@ -1034,7 +1032,6 @@ static int swim3_add_device(struct device_node *swim)
struct
device_node
*
mediabay
;
struct
floppy_state
*
fs
=
&
floppy_states
[
floppy_count
];
char
floppy_name
[
16
];
devfs_handle_t
floppy_handle
;
if
(
swim
->
n_addrs
<
2
)
{
...
...
@@ -1097,7 +1094,7 @@ static int swim3_add_device(struct device_node *swim)
mediabay
?
"in media bay"
:
""
);
sprintf
(
floppy_name
,
"floppy/%d"
,
floppy_count
);
floppy_handle
=
devfs_register
(
NULL
,
floppy_name
,
devfs_register
(
NULL
,
floppy_name
,
DEVFS_FL_DEFAULT
,
FLOPPY_MAJOR
,
floppy_count
,
S_IFBLK
|
S_IRUSR
|
S_IWUSR
|
S_IRGRP
|
S_IWGRP
,
&
floppy_fops
,
NULL
);
...
...
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