Convert ISO-8859 files to UTF-8

There was a mix of UTF-8 and ISO-8859 files in the U-Boot source
tree, which could cause issues with the patchwork review system.
This commit converts all ISO-8859 files to UTF-8.

Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
diff --git a/board/LEOX/elpt860/README.LEOX b/board/LEOX/elpt860/README.LEOX
index e8ab867..fe3c0f1 100644
--- a/board/LEOX/elpt860/README.LEOX
+++ b/board/LEOX/elpt860/README.LEOX
@@ -386,7 +386,7 @@
 IP-Config: Incomplete network configuration information.
 NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
 VFS: Mounted root (ext2 filesystem).
-Freeing unused kernel memory: 44k iné
+Freeing unused kernel memory: 44k init
 init started:  BusyBox v0.60.2 (2002.07.01-12:06+0000) multi-call Configuring hostname
 Configuring lo...
 Configuring eth0...
diff --git a/board/Marvell/common/memory.c b/board/Marvell/common/memory.c
index 45353af..7fd6355 100644
--- a/board/Marvell/common/memory.c
+++ b/board/Marvell/common/memory.c
@@ -35,7 +35,7 @@
 /*******************************************************************************
 * memoryGetBankBaseAddress - Returns the base address of a memory bank.
 * DESCRIPTION:
-*       This function returns the base address of one of the SDRAM’s memory
+*       This function returns the base address of one of the SDRAM's memory
 *       banks. There are 4 memory banks and each one represents one DIMM side.
 * INPUT:
 *       MEMORY_BANK bank - Selects one of the four banks as defined in Memory.h.
@@ -366,8 +366,8 @@
 *       This function sets new base and size for one the memory banks
 *       (CS0 - CS3). It is the programmer`s responsibility to make sure that
 *       there are no conflicts with other memory spaces. When two memory spaces
-*       overlap, the MV’s behavior is not defined .If a bank needs to be closed,
-*       set the ’bankLength’ parameter size to 0x0.
+*       overlap, the MV's behavior is not defined .If a bank needs to be closed,
+*       set the 'bankLength' parameter size to 0x0.
 *
 * INPUT:
 *       bank      - One of the memory banks (CS0-CS3) as defined in gtMemory.h.
@@ -375,7 +375,7 @@
 *       bankLength  - The memory bank size. This function will decrement the
 *                   'bankLength' parameter by one and then check if the size is
 *                   valid. A valid size must be programed from LSB to MSB as
-*                   sequence of ‘1’s followed by sequence of ‘0’s.
+*                   sequence of '1's followed by sequence of '0's.
 *                   To close a memory window simply set the size to 0.
 *      NOTE!!!
 *       The size must be in 64Kbyte granularity.
@@ -487,7 +487,7 @@
 *       This function sets new base and size for one the device windows
 *       (DEV_CS0 - DEV_CS3). It is the programmer`s responsibility to make sure
 *       that there are no conflicts with other memory spaces. When two memory
-*       spaces overlap, the MV’s behavior is not defined .If a device window
+*       spaces overlap, the MV's behavior is not defined .If a device window
 *       needs to be closed, set the 'deviceLength' parameter size to 0x0.
 *
 * INPUT:
@@ -497,8 +497,8 @@
 *       deviceLength - The device window size. This function will decrement
 *                          the 'deviceLength' parameter by one and then
 *                          check if the size is valid. A valid size must be
-*                          programed from LSB to MSB as sequence of ‘1’s
-*                          followed by sequence of ‘0’s.
+*                          programed from LSB to MSB as sequence of '1's
+*                          followed by sequence of '0's.
 *                          To close a memory window simply set the size to 0.
 *
 *      NOTE!!!
@@ -604,7 +604,7 @@
 *       This function sets new base and size for one the PCI windows
 *       (PCI memory0/1/2..). It is the programmer`s responsibility to make sure
 *       that there are no conflicts with other memory spaces. When two memory
-*       spaces overlap, the MV’s behavior is not defined .If a PCI window
+*       spaces overlap, the MV's behavior is not defined. If a PCI window
 *       needs to be closed, set the 'pciWindowSize' parameter size to 0x0.
 *
 * INPUT:
@@ -613,7 +613,7 @@
 *       pciWindowSize - The PCI window size. This function will decrement the
 *                       'pciWindowSize' parameter by one and then check if the
 *                       size is valid. A valid size must be programed from LSB
-*                       to MSB as sequence of ‘1’s followed by sequence of ‘0’s.
+*                       to MSB as sequence of '1's followed by sequence of '0's.
 *                       To close a memory window simply set the size to 0.
 *
 *      NOTE!!!
@@ -718,14 +718,14 @@
 *                                  registers memory space.
 *
 * DESCRIPTION:
-*       This function set new base address for the internal register’s memory
+*       This function set new base address for the internal registers memory
 *       space (the size is fixed and cannot be modified). The function does not
 *       handle overlapping with other memory spaces, it is the programer's
 *       responsibility to ensure that overlapping does not occur.
-*       When two memory spaces overlap, the MV’s behavior is not defined.
+*       When two memory spaces overlap, the MV's behavior is not defined.
 *
 * INPUT:
-*       internalRegBase - new base address for the internal register’s memory
+*       internalRegBase - new base address for the internal registers memory
 *                         space.
 *
 * OUTPUT:
@@ -762,7 +762,7 @@
 *                                     address.
 *
 * DESCRIPTION:
-*       This function returns the base address of  the internal register’s
+*       This function returns the base address of  the internal registers
 *       memory space .
 *
 * INPUT:
@@ -772,7 +772,7 @@
 *       None.
 *
 * RETURN:
-*       32 bit base address of the internal register’s memory space.
+*       32 bit base address of the internal registers memory space.
 *
 *******************************************************************************/
 unsigned int memoryGetInternalRegistersSpace (void)
@@ -874,7 +874,7 @@
 *       regionSize  - The region's size. This function will decrement the
 *                     'regionSize' parameter by one and then check if the size
 *                     is valid. A valid size must be programed from LSB to MSB
-*                     as sequence of ‘1’s followed by sequence of ‘0’s.
+*                     as sequence of '1's followed by sequence of '0's.
 *                     To close a memory window simply set the size to 0.
 *
 *      NOTE!!!
diff --git a/board/RPXClassic/RPXClassic.c b/board/RPXClassic/RPXClassic.c
index c3d5385..641cc44 100644
--- a/board/RPXClassic/RPXClassic.c
+++ b/board/RPXClassic/RPXClassic.c
@@ -1,6 +1,6 @@
 /*
  * (C)	Copyright 2001
- * Stäubli Faverges - <www.staubli.com>
+ * Stäubli Faverges - <www.staubli.com>
  * Pierre AUBERT  p.aubert@staubli.com
  * U-Boot port on RPXClassic LF (CLLF_BW31) board
  *
diff --git a/board/RPXClassic/eccx.c b/board/RPXClassic/eccx.c
index e1f3f9d..c6115eb 100644
--- a/board/RPXClassic/eccx.c
+++ b/board/RPXClassic/eccx.c
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2002
- * Stäubli Faverges - <www.staubli.com>
+ * Stäubli Faverges - <www.staubli.com>
  * Pierre AUBERT  p.aubert@staubli.com
  *
  * See file CREDITS for list of people who contributed to this
diff --git a/board/RPXClassic/flash.c b/board/RPXClassic/flash.c
index f07d960..da7b42c 100644
--- a/board/RPXClassic/flash.c
+++ b/board/RPXClassic/flash.c
@@ -1,6 +1,6 @@
 /*
  * (C)  Copyright 2001
- * Stäubli Faverges - <www.staubli.com>
+ * Stäubli Faverges - <www.staubli.com>
  * Pierre AUBERT  p.aubert@staubli.com
  * U-Boot port on RPXClassic LF (CLLF_BW31) board
  *
diff --git a/board/eNET/Makefile b/board/eNET/Makefile
index 4980787..3703ae5 100644
--- a/board/eNET/Makefile
+++ b/board/eNET/Makefile
@@ -6,7 +6,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 #
 # (C) Copyright 2002
-# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
+# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
 #
 # See file CREDITS for list of people who contributed to this
 # project.
diff --git a/board/eNET/eNET_pci.c b/board/eNET/eNET_pci.c
index a03090e..d97387e 100644
--- a/board/eNET/eNET_pci.c
+++ b/board/eNET/eNET_pci.c
@@ -3,7 +3,7 @@
  * Graeme Russ, <graeme.russ@gmail.com>
  *
  * (C) Copyright 2002
- * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
+ * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
  *
  * See file CREDITS for list of people who contributed to this
  * project.
diff --git a/board/hymod/hymod.c b/board/hymod/hymod.c
index 2af3049..4aa37cd 100644
--- a/board/hymod/hymod.c
+++ b/board/hymod/hymod.c
@@ -378,7 +378,7 @@
 	 *
 	 * "At system reset, initialization software must set up the
 	 *  programmable parameters in the memory controller banks registers
-	 *  (ORx, BRx, P/LSDMR). After all memory parameters are conÞgured,
+	 *  (ORx, BRx, P/LSDMR). After all memory parameters are configured,
 	 *  system software should execute the following initialization sequence
 	 *  for each SDRAM device.
 	 *
diff --git a/board/lwmon/README.keybd b/board/lwmon/README.keybd
index 54f0aeb..5e5144e 100644
--- a/board/lwmon/README.keybd
+++ b/board/lwmon/README.keybd
@@ -5,44 +5,44 @@
 kument  "PIC LWE-Tastatur" in der Fassung vom 9. 3. 2001, insbesonde-
 re Tabelle 3 im Kapitel 4.3 Tastencodes. In  U-Boot  werden  die  vom
 Keyboard-Controller  gelesenen Daten hexadezimal codiert in der auto-
-matisch angelegten Environment-Variablen "keybd" übergeben. Ist  kei-
-ne Taste gedrückt worden, steht dort:
+matisch angelegten Environment-Variablen "keybd" übergeben. Ist  kei-
+ne Taste gedrückt worden, steht dort:
 
 	keybd=000000000000000000
 
 Der decodierte Tastencode ("keybd") kann mit den  "bootargs"  an  den
-Linux-Kernel  übergeben  und  dort z. B. in einem Device-Treiber oder
+Linux-Kernel  übergeben  und  dort z. B. in einem Device-Treiber oder
 einer Applikation ausgewertet werden.
 
 
 Sonderfunktionen beim Booten:
 
 Es lassen sich eine oder mehrere (beliebig viele) Tasten oder Tasten-
-kombinationen definieren, die Sonderfunktionen auslösen,  wenn  diese
-Tasten beim Booten (Reset) gedrückt sind.
+kombinationen definieren, die Sonderfunktionen auslösen,  wenn  diese
+Tasten beim Booten (Reset) gedrückt sind.
 
 Wird eine eingestellte Taste bzw. Tastenkombination erkannt, so  wird
 in  U-Boot noch vor dem Start des "Countdown" und somit vor jedem an-
 deren Kommando der Inhalt einer dieser Taste  bzw.  Tastenkombination
-zugeordneten Environment-Variablen ausführen.
+zugeordneten Environment-Variablen ausführen.
 
 
 Die Environment-Variable "magic_keys" wird als Liste von Zeichen ver-
-standen, die als Suffix an den Namen "key_magic" angefügt werden  und
+standen, die als Suffix an den Namen "key_magic" angefügt werden  und
 so  die  Namen  der  Environment-Variablen  definieren, mit denen die
 Tasten (-kombinationen) festgelegt werden:
 
 Ist "magic_keys" NICHT definiert, so wird nur die in der Environment-
-Variablen "key_magic" codierte  Tasten  (-kombination)  geprüft,  und
-ggf.  der  Inhalt der Environment-Variablen "key_cmd" ausgeführt (ge-
+Variablen "key_magic" codierte  Tasten  (-kombination)  geprüft,  und
+ggf.  der  Inhalt der Environment-Variablen "key_cmd" ausgeführt (ge-
 nauer: der Inhalt von "key_cmd" wird der Variablen "preboot" zugewie-
-sen, die ausgeführt wird, unmittelbar bevor die interaktive Kommando-
+sen, die ausgeführt wird, unmittelbar bevor die interaktive Kommando-
 interpretation beginnt).
 
-Enthält "magic_keys" z. B.  die  Zeichenkette  "0123CB*",  so  werden
-nacheinander folgende Aktionen ausgeführt:
+Enthält "magic_keys" z. B.  die  Zeichenkette  "0123CB*",  so  werden
+nacheinander folgende Aktionen ausgeführt:
 
-	prüfe Tastencode	ggf. führe aus Kommando
+	prüfe Tastencode	ggf. führe aus Kommando
 	in Variable		in Variable
 	-----------------------------------
 	key_magic0	==>	key_cmd0
@@ -55,43 +55,43 @@
 	key_magic*	==>	key_cmd*
 
 Hinweis: sobald ein aktivierter Tastencode erkannt  wurde,  wird  die
-Bearbeitung  abgebrochen; es wird daher höchstens eines der definier-
-ten Kommandos ausgeführt, wobei die Priorität durch  die  Suchreihen-
+Bearbeitung  abgebrochen; es wird daher höchstens eines der definier-
+ten Kommandos ausgeführt, wobei die Priorität durch  die  Suchreihen-
 folge  festgelegt wird, also durch die Reihenfolge der Zeichen in der
 Varuiablen "magic_keys".
 
 
-Die Codierung der Tasten, die beim Booten gedrückt werden müssen, um
-eine Funktion auszulösen, erfolgt nach der Tastaturtabelle.
+Die Codierung der Tasten, die beim Booten gedrückt werden müssen, um
+eine Funktion auszulösen, erfolgt nach der Tastaturtabelle.
 
 Die Definitionen
 
 	=> setenv key_magic0 3a+3b
 	=> setenv key_cmd0 setenv bootdelay 30
 
-bedeuten dementsprechend, daß die Tasten mit den  Codes  0x3A  (Taste
-"F1")  und 0x3B (Taste "F2") gleichzeitig gedrückt werden müssen. Sie
-können dort eine beliebige  Tastenkombination  eintragen  (jeweils  2
-Zeichen für die Hex-Codes der Tasten, und '+' als Trennzeichen).
+bedeuten dementsprechend, daß die Tasten mit den  Codes  0x3A  (Taste
+"F1")  und 0x3B (Taste "F2") gleichzeitig gedrückt werden müssen. Sie
+können dort eine beliebige  Tastenkombination  eintragen  (jeweils  2
+Zeichen für die Hex-Codes der Tasten, und '+' als Trennzeichen).
 
 Wird die eingestellte Tastenkombination erkannt, so  wird  in  U-Boot
 noch  vor  dem Start des "Countdown" und somit vor jedem anderen Kom-
-mando das angebene Kommando ausgeführt und  somit  ein  langes  Boot-
+mando das angebene Kommando ausgeführt und  somit  ein  langes  Boot-
 Delay eingetragen.
 
-Praktisch könnten Sie also in U-Boot "bootdelay"  auf  0  setzen  und
-somit  stets  ohne  jede  User-Interaktion automatisch booten, außer,
-wenn die beiden Tasten "F1" und "F2"  beim  Booten  gedrückt  werden:
-dann würde ein Boot-Delay von 30 Sekunden eingefügt.
+Praktisch könnten Sie also in U-Boot "bootdelay"  auf  0  setzen  und
+somit  stets  ohne  jede  User-Interaktion automatisch booten, außer,
+wenn die beiden Tasten "F1" und "F2"  beim  Booten  gedrückt  werden:
+dann würde ein Boot-Delay von 30 Sekunden eingefügt.
 
 
 Hinweis: dem Zeichen '#' kommt innerhalb von "magic_keys" eine beson-
 dere Bedeutung zu: die dadurch definierte  Key-Sequenz  schaltet  den
-Monitor in den "Debug-Modus" - das bedeutet zunächst, daß alle weite-
-ren  Meldungen  von  U-Boot  über  das LCD-Display ausgegeben werden;
-außerdem kann man durch das mit dieser  Tastenkombination  verknüpfte
+Monitor in den "Debug-Modus" - das bedeutet zunächst, daß alle weite-
+ren  Meldungen  von  U-Boot  über  das LCD-Display ausgegeben werden;
+außerdem kann man durch das mit dieser  Tastenkombination  verknüpfte
 Kommando  z. B. die Linux-Bootmeldungen ebenfalls auf das LCD-Display
-legen, so daß der Boot-Vorgang direkt und  ohne  weitere  Hilfsmittel
+legen, so daß der Boot-Vorgang direkt und  ohne  weitere  Hilfsmittel
 analysiert werden kann.
 
 Beispiel:
@@ -107,20 +107,20 @@
 (6)	=> setenv bootcmd bootp\;run nfsargs\;run addip\;run addfb\;bootm
 
 Hierbei wird die Linux Commandline (in der Variablen  "bootargs")  im
-Boot-Kommando  "bootcmd"  (6)  schrittweise zusammengesetzt: zunächst
-werden die für Root-Filesystem über NFS erforderlichen  Optionen  ge-
+Boot-Kommando  "bootcmd"  (6)  schrittweise zusammengesetzt: zunächst
+werden die für Root-Filesystem über NFS erforderlichen  Optionen  ge-
 setzt  ("run  nfsargs", vgl. (3)), dann die Netzwerkkonfiguration an-
-gefügt ("run addip", vgl. (4)),  und  schließlich  die  Systemconsole
+gefügt ("run addip", vgl. (4)),  und  schließlich  die  Systemconsole
 definiert ("run addfb").
 
 Dabei wird im Normalfall die Definition (5)  verwendt;  wurde  aller-
-dings  beim  Reset die entsprechende Taste gedrückt gehalten, so wird
-diese Definition bei der Ausführung des in (2) definierten  Kommandos
-überschrieben,  so  daß  Linux die Bootmeldungen auch über das Frame-
+dings  beim  Reset die entsprechende Taste gedrückt gehalten, so wird
+diese Definition bei der Ausführung des in (2) definierten  Kommandos
+überschrieben,  so  daß  Linux die Bootmeldungen auch über das Frame-
 buffer-Device (=LCD-Display) ausgibt.
 
 Beachten Sie die Verdoppelung der '\'-Escapes in der  Definition  von
 "key_cmd#" - diese ist erforderlich, weil der String _zweimal_ inter-
 pretiert  wird:  das  erste  Mal  bei der Eingabe von "key_cmd#", das
-zweite Mal, wenn der String (als  Inhalt  von  "preboot")  ausgeführt
+zweite Mal, wenn der String (als  Inhalt  von  "preboot")  ausgeführt
 wird.
diff --git a/board/lwmon/lwmon.c b/board/lwmon/lwmon.c
index 9d6c21f..b5e524b 100644
--- a/board/lwmon/lwmon.c
+++ b/board/lwmon/lwmon.c
@@ -365,7 +365,7 @@
 	 *
 	 * This is just a preliminary fix, intended to turn off TENA
 	 * as soon as possible to avoid noise on the network. Once
-	 * I²C is running we will make sure the interface is
+	 * I2C is running we will make sure the interface is
 	 * correctly initialized.
 	 */
 	immr->im_cpm.cp_pbpar &= ~PB_ENET_TENA;
diff --git a/board/mpl/common/pci_parts.h b/board/mpl/common/pci_parts.h
index 7bca961..65d18a6 100644
--- a/board/mpl/common/pci_parts.h
+++ b/board/mpl/common/pci_parts.h
@@ -63,7 +63,7 @@
 
 /* Mapping:
  * +-------------+------------+------------+--------------------------------+
- * ¦ PCI MemAddr | PCI IOAddr | Local Addr | Device / Function              |
+ * | PCI MemAddr | PCI IOAddr | Local Addr | Device / Function              |
  * +-------------+------------+------------+--------------------------------+
  * |  0x00000000 |            | 0xA0000000 | ISA Memory (hard wired)        |
  * |  0x00FFFFFF |            | 0xA0FFFFFF |                                |