linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fixes trivial error in drivers/isdn/hardware/eicon/divamnt.c
@ 2003-05-27 10:21 Herbert Xu
  2003-05-27 10:41 ` Valdis.Kletnieks
  0 siblings, 1 reply; 2+ messages in thread
From: Herbert Xu @ 2003-05-27 10:21 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 266 bytes --]

This patch adds a pair of missing quotes.
-- 
Debian GNU/Linux 3.0 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

[-- Attachment #2: p --]
[-- Type: text/plain, Size: 625 bytes --]

Index: drivers/isdn/hardware/eicon/divamnt.c
===================================================================
RCS file: /home/gondolin/herbert/src/CVS/debian/kernel-source-2.5/drivers/isdn/hardware/eicon/divamnt.c,v
retrieving revision 1.1.1.4
diff -u -r1.1.1.4 divamnt.c
--- drivers/isdn/hardware/eicon/divamnt.c	27 May 2003 08:38:30 -0000	1.1.1.4
+++ drivers/isdn/hardware/eicon/divamnt.c	27 May 2003 10:17:11 -0000
@@ -421,7 +421,7 @@
 		return (0);
 	}
 
-	devfs_mk_cdev(MKDEV(major, 0), S_IFCHR|S_IRUSR|S_IWUSR, DivasMAINT);
+	devfs_mk_cdev(MKDEV(major, 0), S_IFCHR|S_IRUSR|S_IWUSR, "DivasMAINT");
 	return (1);
 }
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fixes trivial error in drivers/isdn/hardware/eicon/divamnt.c
  2003-05-27 10:21 [PATCH] Fixes trivial error in drivers/isdn/hardware/eicon/divamnt.c Herbert Xu
@ 2003-05-27 10:41 ` Valdis.Kletnieks
  0 siblings, 0 replies; 2+ messages in thread
From: Valdis.Kletnieks @ 2003-05-27 10:41 UTC (permalink / raw)
  To: Herbert Xu; +Cc: Linus Torvalds, Linux Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 329 bytes --]

On Tue, 27 May 2003 20:21:02 +1000, Herbert Xu said:

> This patch adds a pair of missing quotes.

> -	devfs_mk_cdev(MKDEV(major, 0), S_IFCHR|S_IRUSR|S_IWUSR, DivasMAINT);
> +	devfs_mk_cdev(MKDEV(major, 0), S_IFCHR|S_IRUSR|S_IWUSR, "DivasMAINT");
>  	return (1);

This smells like a missing #define DivasMAINT "Some Value Here"?

[-- Attachment #2: Type: application/pgp-signature, Size: 226 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-05-27 11:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-27 10:21 [PATCH] Fixes trivial error in drivers/isdn/hardware/eicon/divamnt.c Herbert Xu
2003-05-27 10:41 ` Valdis.Kletnieks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).