* [PATCH] Fix the meaning of EDAC abbreviation
@ 2009-06-03 0:04 GeunSik Lim
2009-06-03 7:42 ` Alan Cox
2009-06-03 10:12 ` [PATCH V2] " GeunSik Lim
0 siblings, 2 replies; 6+ messages in thread
From: GeunSik Lim @ 2009-06-03 0:04 UTC (permalink / raw)
To: Jiri Kosina; +Cc: linux-kernel, dougthompson
Dear Jiri Kosina,
This is trivial patch about meaning of EDAC in the driver/edac/Kconfig file.
* Screenshot after patch :
http://blogfiles16.naver.net/data42/2009/6/3/31/edac-before-after-invain.png
Thanks,
Subject: [PATCH] Fix the meaning of EDAC abbreviation
Fix the meaning of EDAC(Error Detection And Correction) correctly.
- http://bluesmoke.sourceforge.net
Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
---
drivers/edac/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
index 956982f..2a81915 100644
--- a/drivers/edac/Kconfig
+++ b/drivers/edac/Kconfig
@@ -5,7 +5,7 @@
#
menuconfig EDAC
- bool "EDAC - error detection and reporting"
+ bool "EDAC - Error Detection And Correction"
depends on HAS_IOMEM
depends on X86 || PPC
help
--
1.6.3.1
-----------------------------------------------
To unsubscribe from this list: send the line "unsubscribe linux-***"
in the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
GeunSik Lim ( Samsung Electronics )
e-Mail :1) geunsik.lim@samsung.com
2) leemgs@gmail.com , leemgs1@gmail.com
HomePage: http://blog.naver.com/invain/
-----------------------------------------------
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Fix the meaning of EDAC abbreviation
2009-06-03 0:04 [PATCH] Fix the meaning of EDAC abbreviation GeunSik Lim
@ 2009-06-03 7:42 ` Alan Cox
2009-06-03 8:34 ` GeunSik Lim
2009-06-03 10:12 ` [PATCH V2] " GeunSik Lim
1 sibling, 1 reply; 6+ messages in thread
From: Alan Cox @ 2009-06-03 7:42 UTC (permalink / raw)
To: leemgs1; +Cc: Jiri Kosina, linux-kernel, dougthompson
> Fix the meaning of EDAC(Error Detection And Correction) correctly.
> - http://bluesmoke.sourceforge.net
>
> Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
> ---
> drivers/edac/Kconfig | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
> index 956982f..2a81915 100644
> --- a/drivers/edac/Kconfig
> +++ b/drivers/edac/Kconfig
> @@ -5,7 +5,7 @@
> #
>
> menuconfig EDAC
> - bool "EDAC - error detection and reporting"
> + bool "EDAC - Error Detection And Correction"
The code started off as one thing and acquired its name but a primary
function of it now is indeed reporting rather than just correction. The
name has stuck but the functionality doesn't quite match - so the
existing menuconfig entry is actually more helpful.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Fix the meaning of EDAC abbreviation
2009-06-03 7:42 ` Alan Cox
@ 2009-06-03 8:34 ` GeunSik Lim
0 siblings, 0 replies; 6+ messages in thread
From: GeunSik Lim @ 2009-06-03 8:34 UTC (permalink / raw)
To: Alan Cox; +Cc: Jiri Kosina, linux-kernel, dougthompson
On Wed, Jun 3, 2009 at 4:42 PM, Alan Cox <alan@lxorguk.ukuu.org.uk> wrote:
>> Fix the meaning of EDAC(Error Detection And Correction) correctly.
>> - http://bluesmoke.sourceforge.net
>>
>> Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
>> ---
>> drivers/edac/Kconfig | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
>> index 956982f..2a81915 100644
>> --- a/drivers/edac/Kconfig
>> +++ b/drivers/edac/Kconfig
>> @@ -5,7 +5,7 @@
>> #
>>
>> menuconfig EDAC
>> - bool "EDAC - error detection and reporting"
>> + bool "EDAC - Error Detection And Correction"
>
> The code started off as one thing and acquired its name but a primary
> function of it now is indeed reporting rather than just correction. The
Thank you for explanation and advice about EDAC meaning.
> name has stuck but the functionality doesn't quite match - so the
> existing menuconfig entry is actually more helpful.
Um.
How about we change contents with "EDAC (Error Detection And
Correction) reporting" to understand EDAC abbreviation normally?
This is Just my thinking.
Thks,
--
Regards,
GeunSik Lim ( Samsung Electronics )
Blog : http://blog.naver.com/invain/
e-Mail: geunsik.lim@samsung.com
leemgs@gmail.com , leemgs1@gmail.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH V2] Fix the meaning of EDAC abbreviation
2009-06-03 0:04 [PATCH] Fix the meaning of EDAC abbreviation GeunSik Lim
2009-06-03 7:42 ` Alan Cox
@ 2009-06-03 10:12 ` GeunSik Lim
1 sibling, 0 replies; 6+ messages in thread
From: GeunSik Lim @ 2009-06-03 10:12 UTC (permalink / raw)
To: Jiri Kosina; +Cc: linux-kernel, dougthompson, Alan Cox
Dear Jiri Kosina,
This is trivial patch.
I updated description about EDAC in the driver/edac/Kconfig.
thanks to Alan Cox. Please, merge this patch.
* Changelogs - V1
- Modify original word of EDAC abbreviation.
( http://patchwork.kernel.org/patch/27592/ )
Thanks,
Subject: [PATCH V2] Fix the meaning of EDAC abbreviation
Fix the meaning of EDAC(Error Detection And Correction) correctly.
- http://bluesmoke.sourceforge.net
Signed-off-by: GeunSik Lim <geunsik.lim@samsung.com>
Reviewed-by : Alan Cox <alan@lxorguk.ukuu.org.uk>
---
drivers/edac/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
index 956982f..2a81915 100644
--- a/drivers/edac/Kconfig
+++ b/drivers/edac/Kconfig
@@ -5,7 +5,7 @@
#
menuconfig EDAC
- bool "EDAC - error detection and reporting"
+ bool "EDAC(Error Detection And Correction) reporting"
depends on HAS_IOMEM
depends on X86 || PPC
help
--
1.6.3.1
-----------------------------------------------
To unsubscribe from this list: send the line "unsubscribe linux-***"
in the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
GeunSik Lim ( Samsung Electronics )
e-Mail :1) geunsik.lim@samsung.com
2) leemgs@gmail.com , leemgs1@gmail.com
HomePage: http://blog.naver.com/invain/
-----------------------------------------------
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH V2] Fix the meaning of EDAC abbreviation
2009-06-03 14:54 Doug Thompson
@ 2009-06-03 21:44 ` GeunSik Lim
0 siblings, 0 replies; 6+ messages in thread
From: GeunSik Lim @ 2009-06-03 21:44 UTC (permalink / raw)
To: Doug Thompson; +Cc: Jiri Kosina, linux-kernel, dougthompson, Alan Cox
On Wed, Jun 3, 2009 at 11:54 PM, Doug Thompson <norsk5@yahoo.com> wrote:
>> menuconfig EDAC
>> - bool "EDAC - error detection and
>> reporting"
>> + bool "EDAC(Error Detection And
>> Correction) reporting"
>> depends on HAS_IOMEM
>> depends on X86 || PPC
>> help>
> Ok, even better. It covers both contexts
Thanks for your reply.
--
Regards,
GeunSik Lim ( Samsung Electronics )
Blog : http://blog.naver.com/invain/
e-Mail: geunsik.lim@samsung.com
leemgs@gmail.com , leemgs1@gmail.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH V2] Fix the meaning of EDAC abbreviation
@ 2009-06-03 14:54 Doug Thompson
2009-06-03 21:44 ` GeunSik Lim
0 siblings, 1 reply; 6+ messages in thread
From: Doug Thompson @ 2009-06-03 14:54 UTC (permalink / raw)
To: Jiri Kosina, leemgs1; +Cc: linux-kernel, dougthompson, Alan Cox
--- On Wed, 6/3/09, GeunSik Lim <leemgs1@gmail.com> wrote:
> From: GeunSik Lim <leemgs1@gmail.com>
> Subject: [PATCH V2] Fix the meaning of EDAC abbreviation
> To: "Jiri Kosina" <trivial@kernel.org>
> Cc: "linux-kernel" <linux-kernel@vger.kernel.org>, dougthompson@xmission.com, "Alan Cox" <alan@lxorguk.ukuu.org.uk>
> Date: Wednesday, June 3, 2009, 4:12 AM
>
>
>
> Dear Jiri Kosina,
>
> This is trivial patch.
> I updated description about EDAC in the
> driver/edac/Kconfig.
> thanks to Alan Cox. Please, merge this patch.
>
> * Changelogs - V1
> - Modify original word of EDAC abbreviation.
> ( http://patchwork.kernel.org/patch/27592/
> )
>
>
>
> Thanks,
>
>
> Subject: [PATCH V2] Fix the meaning of EDAC abbreviation
>
> Fix the meaning of EDAC(Error Detection And Correction)
> correctly.
> - http://bluesmoke.sourceforge.net
>
> Signed-off-by: GeunSik Lim
> <geunsik.lim@samsung.com>
> Reviewed-by : Alan Cox
> <alan@lxorguk.ukuu.org.uk>
> ---
> drivers/edac/Kconfig | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
> index 956982f..2a81915 100644
> --- a/drivers/edac/Kconfig
> +++ b/drivers/edac/Kconfig
> @@ -5,7 +5,7 @@
> #
>
> menuconfig EDAC
> - bool "EDAC - error detection and
> reporting"
> + bool "EDAC(Error Detection And
> Correction) reporting"
> depends on HAS_IOMEM
> depends on X86 || PPC
> help
> --
> 1.6.3.1
Ok, even better. It covers both contexts
doug t
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-06-03 21:51 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-03 0:04 [PATCH] Fix the meaning of EDAC abbreviation GeunSik Lim
2009-06-03 7:42 ` Alan Cox
2009-06-03 8:34 ` GeunSik Lim
2009-06-03 10:12 ` [PATCH V2] " GeunSik Lim
2009-06-03 14:54 Doug Thompson
2009-06-03 21:44 ` GeunSik Lim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®