* [U-Boot-Users] [PATCH] 7/9: informations
@ 2003-03-06 12:37 Robert Schwebel
2003-03-06 13:10 ` Wolfgang Denk
0 siblings, 1 reply; 3+ messages in thread
From: Robert Schwebel @ 2003-03-06 12:37 UTC (permalink / raw)
To: u-boot
INFORMATIONS
============
- There is no "informations" in the English language; correct plural
form is "information". See your 7th grade English book if you don't
believe it :-)
- This patch definitely does not introduce new functionality.
- This patch results in a u-boot binary image which is reduced by one
byte. Please remember adding this to my memory pool which I can use
the next time I'll add better documentation :-)
Robert
--
Dipl.-Ing. Robert Schwebel | http://www.pengutronix.de
Pengutronix - Linux Solutions for Science and Industry
Braunschweiger Str. 79, 31134 Hildesheim, Germany
Handelsregister: Amtsgericht Hildesheim, HRA 2686
Phone: +49-5121-28619-0 | Fax: +49-5121-28619-4
-------------- next part --------------
diff -urN -x CVS -x ptx-patches -x logfile -x logfile1 u-boot/net/bootp.c u-boot-ptx/net/bootp.c
--- u-boot/net/bootp.c 2002-09-28 01:19:37.000000000 +0200
+++ u-boot-ptx/net/bootp.c 2003-02-11 19:42:44.000000000 +0100
@@ -211,7 +212,7 @@
break;
case 18: /* Extension path - Not yet supported */
/*
- * This can be used to send the informations of the
+ * This can be used to send the information of the
* vendor area in another file that the client can
* access via TFTP.
*/
@@ -229,7 +230,7 @@
/* Application layer fields */
case 43: /* Vendor specific info - Not yet supported */
/*
- * Binary informations to exchange specific
+ * Binary information to exchange specific
* product information.
*/
break;
diff -urN -x CVS -x ptx-patches -x logfile -x logfile1 u-boot/board/mpl/common/common_util.c u-boot-ptx/board/mpl/common/common_util.c
--- u-boot/board/mpl/common/common_util.c 2002-11-03 01:28:18.000000000 +0100
+++ u-boot-ptx/board/mpl/common/common_util.c 2003-01-31 16:49:36.000000000 +0100
@@ -301,7 +301,7 @@
void show_stdio_dev(void)
{
- /* Print informations */
+ /* Print information */
printf ("In: ");
if (stdio_devices[stdin] == NULL) {
printf ("No input devices available!\n");
diff -urN -x CVS -x ptx-patches -x logfile -x logfile1 u-boot/common/console.c u-boot-ptx/common/console.c
--- u-boot/common/console.c 2002-12-03 08:08:24.000000000 +0100
+++ u-boot-ptx/common/console.c 2003-01-31 16:49:53.000000000 +0100
@@ -496,7 +496,7 @@
}
#ifndef CFG_CONSOLE_INFO_QUIET
- /* Print informations */
+ /* Print information */
printf ("In: ");
if (stdio_devices[stdin] == NULL) {
printf ("No input devices available!\n");
diff -urN -x CVS -x ptx-patches -x logfile -x logfile1 u-boot/fs/fdos/dev.c u-boot-ptx/fs/fdos/dev.c
--- u-boot/fs/fdos/dev.c 2002-11-18 01:14:46.000000000 +0100
+++ u-boot-ptx/fs/fdos/dev.c 2003-01-31 16:50:29.000000000 +0100
@@ -149,7 +149,7 @@
__le16_to_cpu (boot -> TimeF));
- /* informations are extracted from boot sector */
+ /* information is extracted from boot sector */
heads = __le16_to_cpu (boot -> nheads);
sectors = __le16_to_cpu (boot -> nsect);
fs -> tot_sectors = __le32_to_cpu (boot -> bigsect);
diff -urN -x CVS -x ptx-patches -x logfile -x logfile1 u-boot/include/cmd_console.h u-boot-ptx/include/cmd_console.h
--- u-boot/include/cmd_console.h 2002-08-27 12:29:44.000000000 +0200
+++ u-boot-ptx/include/cmd_console.h 2003-01-31 16:50:52.000000000 +0100
@@ -30,7 +30,7 @@
#if (CONFIG_COMMANDS & CFG_CMD_CONSOLE)
#define CMD_TBL_CONINFO MK_CMD_TBL_ENTRY( \
"coninfo", 5, 3, 1, do_coninfo, \
- "coninfo - print console devices and informations\n", \
+ "coninfo - print console devices and information\n", \
"" \
),
int do_coninfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
diff -urN -x CVS -x ptx-patches -x logfile -x logfile1 u-boot/include/devices.h u-boot-ptx/include/devices.h
--- u-boot/include/devices.h 2002-12-19 09:19:01.000000000 +0100
+++ u-boot-ptx/include/devices.h 2003-01-31 16:51:07.000000000 +0100
@@ -35,7 +35,7 @@
#define DEV_FLAGS_SYSTEM 0x80000000 /* Device is a system device */
#define DEV_EXT_VIDEO 0x00000001 /* Video extensions supported */
-/* Device informations */
+/* Device information */
typedef struct {
int flags; /* Device flags: input/output/system */
int ext; /* Supported extensions */
diff -urN -x CVS -x ptx-patches -x logfile -x logfile1 u-boot/tools/easylogo/easylogo.c u-boot-ptx/tools/easylogo/easylogo.c
--- u-boot/tools/easylogo/easylogo.c 2002-11-03 02:00:28.000000000 +0100
+++ u-boot-ptx/tools/easylogo/easylogo.c 2003-01-31 16:51:49.000000000 +0100
@@ -264,7 +264,7 @@
if (file==NULL)
return -1 ;
-/* Author informations */
+/* Author information */
fprintf(file, "/*\n * Generated by EasyLogo, (C) 2000 by Paolo Scaffardi\n/*\n"); */
fprintf(file, " * To use this, include it and call: easylogo_plot(screen,&%s, width,x,y)\n *\n", varname);
fprintf(file, " * Where:\t'screen'\tis the pointer to the frame buffer\n");
^ permalink raw reply [flat|nested] 3+ messages in thread* [U-Boot-Users] [PATCH] 7/9: informations
2003-03-06 12:37 [U-Boot-Users] [PATCH] 7/9: informations Robert Schwebel
@ 2003-03-06 13:10 ` Wolfgang Denk
2003-03-07 6:08 ` Robert Schwebel
0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Denk @ 2003-03-06 13:10 UTC (permalink / raw)
To: u-boot
In message <20030306123709.GT16290@pengutronix.de> you wrote:
>
> - There is no "informations" in the English language; correct plural
> form is "information". See your 7th grade English book if you don't
> believe it :-)
Please turn off fascist mode.
You should show a bit more tolerance to the people who contribute to
this Open Source project. The developer who wrote this code (from
Italy, IIRC, so not a native English speaker) may have made some
spelling errors, but he definitely contributed some extremely
valuable code.
Please don't forget that you are standing on the shoulder of others
who did all the dirty work for you.
Added.
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-4596-87 Fax: (+49)-8142-4596-88 Email: wd at denx.de
Quote from the Boss after overriding the decision of a task force he
created to find a solution: "I'm sorry if I ever gave you the
impression your input would have any effect on my decision for the
outcome of this project!"
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot-Users] [PATCH] 7/9: informations
2003-03-06 13:10 ` Wolfgang Denk
@ 2003-03-07 6:08 ` Robert Schwebel
0 siblings, 0 replies; 3+ messages in thread
From: Robert Schwebel @ 2003-03-07 6:08 UTC (permalink / raw)
To: u-boot
On Thu, Mar 06, 2003 at 02:10:29PM +0100, Wolfgang Denk wrote:
> Please turn off fascist mode.
There was a smily after this sentence, as it looked like a systematic
mistake. I won't comment your absolutely inacceptable accusation above.
Robert
--
Dipl.-Ing. Robert Schwebel | http://www.pengutronix.de
Pengutronix - Linux Solutions for Science and Industry
Braunschweiger Str. 79, 31134 Hildesheim, Germany
Handelsregister: Amtsgericht Hildesheim, HRA 2686
Phone: +49-5121-28619-0 | Fax: +49-5121-28619-4
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-03-07 6:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-06 12:37 [U-Boot-Users] [PATCH] 7/9: informations Robert Schwebel
2003-03-06 13:10 ` Wolfgang Denk
2003-03-07 6:08 ` Robert Schwebel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox