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
ed3899b2
Commit
ed3899b2
authored
Mar 10, 2004
by
Aristeu Sergio Rozanski Filho
Committed by
James Bottomley
Mar 10, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] qlogic_cs: use own MODULE_ macros
parent
16ec5fe4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
drivers/scsi/pcmcia/qlogic_stub.c
drivers/scsi/pcmcia/qlogic_stub.c
+3
-0
drivers/scsi/qlogicfas.c
drivers/scsi/qlogicfas.c
+3
-4
No files found.
drivers/scsi/pcmcia/qlogic_stub.c
View file @
ed3899b2
...
...
@@ -433,5 +433,8 @@ static void __exit exit_qlogic_cs(void)
qlogic_detach
(
dev_list
);
}
MODULE_AUTHOR
(
"Tom Zerucha, Michael Griffith"
);
MODULE_DESCRIPTION
(
"Driver for the PCMCIA Qlogic FAS SCSI controllers"
);
MODULE_LICENSE
(
"GPL"
);
module_init
(
init_qlogic_cs
);
module_exit
(
exit_qlogic_cs
);
drivers/scsi/qlogicfas.c
View file @
ed3899b2
...
...
@@ -721,10 +721,6 @@ static const char *qlogicfas_info(struct Scsi_Host *host)
return
priv
->
qinfo
;
}
MODULE_AUTHOR
(
"Tom Zerucha, Michael Griffith"
);
MODULE_DESCRIPTION
(
"Driver for the Qlogic FAS SCSI controllers"
);
MODULE_LICENSE
(
"GPL"
);
/*
* The driver template is also needed for PCMCIA
*/
...
...
@@ -765,6 +761,9 @@ static __exit void qlogicfas_exit(void)
qlogicfas_release
(
priv
->
shost
);
}
MODULE_AUTHOR
(
"Tom Zerucha, Michael Griffith"
);
MODULE_DESCRIPTION
(
"Driver for the Qlogic FAS SCSI controllers"
);
MODULE_LICENSE
(
"GPL"
);
module_init
(
qlogicfas_init
);
module_exit
(
qlogicfas_exit
);
#endif
/* ifndef PCMCIA */
...
...
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