diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-12 15:57:34 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-12 15:57:34 -0800 |
commit | ddb4a9dd6af72cc2c57a82d54d104d53c86384c2 (patch) | |
tree | 913f3e48e7a63dd4907141dcfe1d10ecdfc581e8 /drivers/isdn/hardware/mISDN/hfcpci.c | |
parent | 87aa08b7fee79dac908c80f7593007243448ef89 (diff) | |
parent | 24dafdf00b630cb827875c187f2a493280cab078 (diff) | |
download | lwn-ddb4a9dd6af72cc2c57a82d54d104d53c86384c2.tar.gz lwn-ddb4a9dd6af72cc2c57a82d54d104d53c86384c2.zip |
Merge branch 'for_2.6.29' of git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6
* 'for_2.6.29' of git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6:
Fix small typo
misdn: indentation and braces disagree - add braces
misdn: one handmade ARRAY_SIZE converted
drivers/isdn/hardware/mISDN: move a dereference below a NULL test
indentation & braces disagree - add braces
Make parameter debug writable
BUGFIX: used NULL pointer at ioctl(sk,IMGETDEVINFO,&devinfo) when devinfo.id not registered
Diffstat (limited to 'drivers/isdn/hardware/mISDN/hfcpci.c')
-rw-r--r-- | drivers/isdn/hardware/mISDN/hfcpci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c index 917bf41a293b..f0e14dfcf71d 100644 --- a/drivers/isdn/hardware/mISDN/hfcpci.c +++ b/drivers/isdn/hardware/mISDN/hfcpci.c @@ -61,7 +61,7 @@ u32 hfc_jiffies; MODULE_AUTHOR("Karsten Keil"); MODULE_LICENSE("GPL"); -module_param(debug, uint, 0); +module_param(debug, uint, S_IRUGO | S_IWUSR); module_param(poll, uint, S_IRUGO | S_IWUSR); enum { |