2003-09-24 03:30:12

by Trivial Patch Monkey

[permalink] [raw]
Subject: [TRIVIAL] Fix comment in parse_hex_value

From: <[email protected]>


--- trivial-2.6.0-test5-bk10/arch/i386/kernel/irq.c.orig 2003-09-24 12:27:14.000000000 +1000
+++ trivial-2.6.0-test5-bk10/arch/i386/kernel/irq.c 2003-09-24 12:27:14.000000000 +1000
@@ -904,7 +904,7 @@
return -EFAULT;

/*
- * Parse the first 8 characters as a hex string, any non-hex char
+ * Parse the first HEX_DIGITS characters as a hex string, any non-hex char
* is end-of-string. '00e1', 'e1', '00E1', 'E1' are all the same.
*/

--
What is this? http://www.kernel.org/pub/linux/kernel/people/rusty/trivial/
Don't blame me: the Monkey is driving
File: =?koi8-r?Q?=22?=Alexey Dobriyan=?koi8-r?Q?=22=20?= <[email protected]>: [PATCH] Fix comment in parse_hex_value


2003-09-24 03:47:53

by William Lee Irwin III

[permalink] [raw]
Subject: Re: [TRIVIAL] Fix comment in parse_hex_value

On Wed, Sep 24, 2003 at 12:50:45PM +1000, Rusty Trivial Russell wrote:
> - * Parse the first 8 characters as a hex string, any non-hex char
> + * Parse the first HEX_DIGITS characters as a hex string, any non-hex char

This is good; thanks for catching it. I was over this recently and
should have cleaned it up while I was there.


-- wli