projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9fb6066
)
isdn: act200: fix MODULE_PARM_DESC() typo
author
Dan Carpenter
<dan.carpenter@oracle.com>
Fri, 8 Jan 2016 10:58:50 +0000
(13:58 +0300)
committer
David S. Miller
<davem@davemloft.net>
Fri, 8 Jan 2016 18:24:20 +0000
(13:24 -0500)
There is no "membase", it was "act_port" that was intended.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/isdn/act2000/module.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/isdn/act2000/module.c
b/drivers/isdn/act2000/module.c
index c3a1b061838da5f5b42aee00f5087e1e11c87b71..68073d0da0e30d65e35b0f67976de047adfd59d1 100644
(file)
--- a/
drivers/isdn/act2000/module.c
+++ b/
drivers/isdn/act2000/module.c
@@
-37,7
+37,7
@@
MODULE_DESCRIPTION("ISDN4Linux: Driver for IBM Active 2000 ISDN card");
MODULE_AUTHOR("Fritz Elfert");
MODULE_LICENSE("GPL");
MODULE_PARM_DESC(act_bus, "BusType of first card, 1=ISA, 2=MCA, 3=PCMCIA, currently only ISA");
-MODULE_PARM_DESC(
membase
, "Base port address of first card");
+MODULE_PARM_DESC(
act_port
, "Base port address of first card");
MODULE_PARM_DESC(act_irq, "IRQ of first card");
MODULE_PARM_DESC(act_id, "ID-String of first card");
module_param(act_bus, int, 0);