All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
@ 2013-07-10  7:37 Wolfgang Denk
  2013-07-10  7:37 ` [U-Boot] [PATCH 1/5] Licenses: introduce SPDX Unique Lincense Identifiers Wolfgang Denk
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: Wolfgang Denk @ 2013-07-10  7:37 UTC (permalink / raw)
  To: u-boot

Like many other projects, U-Boot has a tradition of including big
blocks of License headers in all files.  This not only blows up the
source code with mostly redundant information, but also makes it very
difficult to generate License Clearing Reports.  An additional problem
is that even the same lincenses are referred to by a number of
slightly varying text blocks (full, abbreviated, different
indentation, line wrapping and/or white space, with obsolete address
information, ...) which makes automatic processing a nightmare.

To make this easier, such license headers in the source files will be
replaced with a single line reference to Unique Lincense Identifiers
as defined by the Linux Foundation's SPDX project [1].  For example,
in a source file the full "GPL v2.0 or later" header text will be
replaced by a single line:

        SPDX-License-Identifier:        GPL-2.0+

We use the SPDX Unique Lincense Identifiers here; these are available
at [2].

Note: From the legal point of view, this patch is supposed to be only
a change to the textual representation of the license information,
but in no way any change to the actual license terms. With this patch
applied, all files will still be licensed under the same terms they
were before.

Note 2: The apparent difference between the old "COPYING" and the new
"Licenses/gpl-2.0.txt" only results from switching to the upstream
version of the license which is differently formatted; there are not
any actual changes to the content.

Note 3: There are some recurring questions about linense issues, such
as:
    - Is a "All Rights Reserved" clause a problem in GPL code?
    - Are files without any license header a problem?
    - Do we need license headers at all?

The following excerpt from an e-mail by Daniel B. Ravicher should help
with these:

| Message-ID: <4ADF8CAA.5030808@softwarefreedom.org>
| Date: Wed, 21 Oct 2009 18:35:22 -0400
| From: "Daniel B. Ravicher" <ravicher@softwarefreedom.org>
| To: Wolfgang Denk <wd@denx.de>
| Subject: Re: GPL and license cleanup questions
|
| Mr. Denk,
|
| Wolfgang Denk wrote:
| > - There are a number of files which do not include any specific
| > license information at all. Is it correct to assume that these files
| > are automatically covered by the "GPL v2 or later" clause as
| > specified by the COPYING file in the top level directory of the
| > U-Boot source tree?
|
| That is a very fact specific analysis and could be different across the
| various files.  However, if the contributor could reasonably be expected
| to have known that the project was licensed GPLv2 or later at the time
| she made her contribution, then a reasonably implication is that she
| consented to her contributions being distributed under those terms.
|
| > - Do such files need any clean up, for example should we add GPL
| > headers to them, or is this not needed?
|
| If the project as a whole is licensed under clear terms, you need not
| identify those same terms in each file, although there is no harm in
| doing so.
|
| > - There are other files, which include both a GPL license header
| > _plus_ some copyright note with an "All Rights Reserved" clause. It
| > has been my understanding that this is a conflict, and me must ask
| > the copyright holders to remove such "All Rights Reserved" clauses.
| > But then, some people claim that "All Rights Reserved" is a no-op
| > nowadays. License checking tools (like OSLC) seem to indicate this is
| > a problem, but then we see quite a lot of "All rights reserved" in
| > BSD-licensed files in gcc and glibc. So what is the correct way to
| > deal with such files?
|
| It is not a conflict to grant a license and also reserve all rights, as
| implicit in that language is that you are reserving all "other" rights
| not granted in the license.  Thus, a file with "Licensed under GPL, All
| Rights Reserved" would mean that it is licensed under the GPL, but no
| other rights are given to copy, modify or redistribute it.
|
| Warm regards,
| --Dan
|
| Daniel B. Ravicher, Legal Director
| Software Freedom Law Center (SFLC) and Moglen Ravicher LLC
| 1995 Broadway, 17th Fl., New York, NY 10023
| (212) 461-1902 direct  (212) 580-0800 main  (212) 580-0898 fax
| ravicher at softwarefreedom.org   www.softwarefreedom.org

[1] http://spdx.org/
[2] http://spdx.org/licenses/


Especially patch 2 is way too big for posting on the ML (patch
size: 6.5M, 5769 files changed, 6007 insertions, 91862 deletions).
Patches 2/5 through 5/5 will therefore NOT be posted here.
Instead, I pushed this code into the "SPDX-License-IDs" branch of the
u-boot-testing repository, see

	git://git.denx.de/u-boot-testing.git
	http://git.denx.de/u-boot-testing.git
resp.
	http://git.denx.de/?p=u-boot/u-boot-testing.git;a=shortlog;h=refs/heads/SPDX-License-IDs


Signed-off-by: Wolfgang Denk <wd@denx.de>

Wolfgang Denk (5):
  Licenses: introduce SPDX Unique Lincense Identifiers
  Add GPL-2.0+ SPDX-License-Identifier to source files
  Add LGPL-2.1+ SPDX-License-Identifier to source files
  Add LGPL-2.0+ SPDX-License-Identifier to source files
  Add eCos-2.0 SPDX-License-Identifier to source files

 Licenses/README                                    |  30 ++
 Licenses/eCos-2.0.txt                              |  43 ++
 COPYING => Licenses/gpl-2.0.txt                    | 113 +++--
 Licenses/lgpl-2.0.txt                              | 481 ++++++++++++++++++++
 Licenses/lgpl-2.1.txt                              | 502 +++++++++++++++++++++
 MAKEALL                                            |   2 +
 Makefile                                           |  20 +-
 README                                             |  20 +-
 api/Makefile                                       |  18 +-
 api/api.c                                          |  19 +-
 api/api_display.c                                  |  18 +-
 api/api_net.c                                      |  19 +-
 api/api_platform-arm.c                             |  20 +-
 api/api_platform-powerpc.c                         |  20 +-
 api/api_private.h                                  |  19 +-
 api/api_storage.c                                  |  19 +-
 arch/arm/config.mk                                 |  18 +-
 arch/arm/cpu/arm1136/Makefile                      |  18 +-
 arch/arm/cpu/arm1136/config.mk                     |  18 +-
 arch/arm/cpu/arm1136/cpu.c                         |  18 +-
 arch/arm/cpu/arm1136/mx31/Makefile                 |  18 +-
 arch/arm/cpu/arm1136/mx31/devices.c                |  18 +-
 arch/arm/cpu/arm1136/mx31/generic.c                |  18 +-
 arch/arm/cpu/arm1136/mx31/timer.c                  |  18 +-
 arch/arm/cpu/arm1136/mx35/Makefile                 |  18 +-
 arch/arm/cpu/arm1136/mx35/asm-offsets.c            |   5 +-
 arch/arm/cpu/arm1136/mx35/generic.c                |  18 +-
 arch/arm/cpu/arm1136/mx35/mx35_sdram.c             |  18 +-
 arch/arm/cpu/arm1136/mx35/timer.c                  |  18 +-
 arch/arm/cpu/arm1136/omap24xx/Makefile             |  18 +-
 arch/arm/cpu/arm1136/omap24xx/reset.S              |  18 +-
 arch/arm/cpu/arm1136/omap24xx/timer.c              |  18 +-
 arch/arm/cpu/arm1136/start.S                       |  18 +-
 arch/arm/cpu/arm1136/u-boot-spl.lds                |  18 +-
 arch/arm/cpu/arm1176/Makefile                      |  18 +-
 arch/arm/cpu/arm1176/bcm2835/mbox.c                |  13 +-
 arch/arm/cpu/arm1176/config.mk                     |  18 +-
 arch/arm/cpu/arm1176/cpu.c                         |  18 +-
 arch/arm/cpu/arm1176/start.S                       |  18 +-
 arch/arm/cpu/arm1176/tnetv107x/Makefile            |  17 +-
 arch/arm/cpu/arm1176/tnetv107x/aemif.c             |  17 +-
 arch/arm/cpu/arm1176/tnetv107x/clock.c             |  17 +-
 arch/arm/cpu/arm1176/tnetv107x/init.c              |  17 +-
 arch/arm/cpu/arm1176/tnetv107x/lowlevel_init.S     |  17 +-
 arch/arm/cpu/arm1176/tnetv107x/mux.c               |  17 +-
 arch/arm/cpu/arm1176/tnetv107x/timer.c             |  17 +-
 arch/arm/cpu/arm720t/Makefile                      |  18 +-
 arch/arm/cpu/arm720t/config.mk                     |  18 +-
 arch/arm/cpu/arm720t/cpu.c                         |  18 +-
 arch/arm/cpu/arm720t/interrupts.c                  |  18 +-
 arch/arm/cpu/arm720t/start.S                       |  18 +-
 arch/arm/cpu/arm720t/tegra-common/Makefile         |  18 +-
 arch/arm/cpu/arm720t/tegra-common/cpu.h            |  18 +-
 arch/arm/cpu/arm720t/tegra-common/spl.c            |  18 +-
 arch/arm/cpu/arm720t/tegra20/Makefile              |  18 +-
 arch/arm/cpu/arm720t/tegra20/config.mk             |  18 +-
 arch/arm/cpu/arm920t/Makefile                      |  18 +-
 arch/arm/cpu/arm920t/a320/Makefile                 |  18 +-
 arch/arm/cpu/arm920t/a320/reset.S                  |  14 +-
 arch/arm/cpu/arm920t/a320/timer.c                  |  14 +-
 arch/arm/cpu/arm920t/at91/Makefile                 |  18 +-
 arch/arm/cpu/arm920t/at91/at91rm9200_devices.c     |  18 +-
 arch/arm/cpu/arm920t/at91/clock.c                  |   5 +-
 arch/arm/cpu/arm920t/at91/cpu.c                    |  18 +-
 arch/arm/cpu/arm920t/at91/lowlevel_init.S          |  18 +-
 arch/arm/cpu/arm920t/at91/reset.c                  |  18 +-
 arch/arm/cpu/arm920t/at91/timer.c                  |  18 +-
 arch/arm/cpu/arm920t/config.mk                     |  18 +-
 arch/arm/cpu/arm920t/cpu.c                         |  18 +-
 arch/arm/cpu/arm920t/ep93xx/Makefile               |  16 +-
 arch/arm/cpu/arm920t/ep93xx/cpu.c                  |  16 +-
 arch/arm/cpu/arm920t/ep93xx/led.c                  |  18 +-
 arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S        |  18 +-
 arch/arm/cpu/arm920t/ep93xx/speed.c                |  16 +-
 arch/arm/cpu/arm920t/ep93xx/timer.c                |  16 +-
 arch/arm/cpu/arm920t/ep93xx/u-boot.lds             |  18 +-
 arch/arm/cpu/arm920t/imx/Makefile                  |  18 +-
 arch/arm/cpu/arm920t/imx/generic.c                 |  15 +-
 arch/arm/cpu/arm920t/imx/speed.c                   |  18 +-
 arch/arm/cpu/arm920t/imx/timer.c                   |  18 +-
 arch/arm/cpu/arm920t/interrupts.c                  |  18 +-
 arch/arm/cpu/arm920t/ks8695/Makefile               |  18 +-
 arch/arm/cpu/arm920t/ks8695/lowlevel_init.S        |  18 +-
 arch/arm/cpu/arm920t/ks8695/timer.c                |  18 +-
 arch/arm/cpu/arm920t/s3c24x0/Makefile              |  18 +-
 arch/arm/cpu/arm920t/s3c24x0/cpu_info.c            |  18 +-
 arch/arm/cpu/arm920t/s3c24x0/interrupts.c          |  18 +-
 arch/arm/cpu/arm920t/s3c24x0/speed.c               |  18 +-
 arch/arm/cpu/arm920t/s3c24x0/timer.c               |  18 +-
 arch/arm/cpu/arm920t/start.S                       |  18 +-
 arch/arm/cpu/arm925t/Makefile                      |  18 +-
 arch/arm/cpu/arm925t/config.mk                     |  18 +-
 arch/arm/cpu/arm925t/cpu.c                         |  18 +-
 arch/arm/cpu/arm925t/omap925.c                     |  18 +-
 arch/arm/cpu/arm925t/start.S                       |  18 +-
 arch/arm/cpu/arm925t/timer.c                       |  18 +-
 arch/arm/cpu/arm926ejs/Makefile                    |  18 +-
 arch/arm/cpu/arm926ejs/armada100/Makefile          |  18 +-
 arch/arm/cpu/arm926ejs/armada100/cpu.c             |  18 +-
 arch/arm/cpu/arm926ejs/armada100/dram.c            |  18 +-
 arch/arm/cpu/arm926ejs/armada100/timer.c           |  18 +-
 arch/arm/cpu/arm926ejs/at91/Makefile               |  18 +-
 arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c     |  18 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c  |  18 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c  |  18 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c  |  18 +-
 .../cpu/arm926ejs/at91/at91sam9m10g45_devices.c    |  18 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9n12_devices.c  |  18 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9rl_devices.c   |  18 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c   |  18 +-
 arch/arm/cpu/arm926ejs/at91/clock.c                |   5 +-
 arch/arm/cpu/arm926ejs/at91/cpu.c                  |  18 +-
 arch/arm/cpu/arm926ejs/at91/eflash.c               |  18 +-
 arch/arm/cpu/arm926ejs/at91/led.c                  |  18 +-
 arch/arm/cpu/arm926ejs/at91/lowlevel_init.S        |  18 +-
 arch/arm/cpu/arm926ejs/at91/reset.c                |  18 +-
 arch/arm/cpu/arm926ejs/at91/timer.c                |  18 +-
 arch/arm/cpu/arm926ejs/cache.c                     |  17 +-
 arch/arm/cpu/arm926ejs/config.mk                   |  18 +-
 arch/arm/cpu/arm926ejs/cpu.c                       |  18 +-
 arch/arm/cpu/arm926ejs/davinci/Makefile            |  18 +-
 arch/arm/cpu/arm926ejs/davinci/config.mk           |  10 +-
 arch/arm/cpu/arm926ejs/davinci/cpu.c               |  17 +-
 arch/arm/cpu/arm926ejs/davinci/da830_pinmux.c      |  14 +-
 arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c    |  17 +-
 arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c      |  14 +-
 arch/arm/cpu/arm926ejs/davinci/dm355.c             |  17 +-
 arch/arm/cpu/arm926ejs/davinci/dm365.c             |  17 +-
 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |  17 +-
 arch/arm/cpu/arm926ejs/davinci/dm644x.c            |  17 +-
 arch/arm/cpu/arm926ejs/davinci/dm646x.c            |  17 +-
 arch/arm/cpu/arm926ejs/davinci/dp83848.c           |  18 +-
 arch/arm/cpu/arm926ejs/davinci/et1011c.c           |  14 +-
 arch/arm/cpu/arm926ejs/davinci/ksz8873.c           |  18 +-
 arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S     |  21 +-
 arch/arm/cpu/arm926ejs/davinci/lxt972.c            |  18 +-
 arch/arm/cpu/arm926ejs/davinci/misc.c              |  17 +-
 arch/arm/cpu/arm926ejs/davinci/pinmux.c            |  17 +-
 arch/arm/cpu/arm926ejs/davinci/psc.c               |  17 +-
 arch/arm/cpu/arm926ejs/davinci/reset.c             |   5 +-
 arch/arm/cpu/arm926ejs/davinci/spl.c               |  18 +-
 arch/arm/cpu/arm926ejs/davinci/timer.c             |  18 +-
 arch/arm/cpu/arm926ejs/kirkwood/Makefile           |  18 +-
 arch/arm/cpu/arm926ejs/kirkwood/cache.c            |  17 +-
 arch/arm/cpu/arm926ejs/kirkwood/cpu.c              |  18 +-
 arch/arm/cpu/arm926ejs/kirkwood/dram.c             |  18 +-
 arch/arm/cpu/arm926ejs/kirkwood/timer.c            |  18 +-
 arch/arm/cpu/arm926ejs/lpc32xx/Makefile            |  18 +-
 arch/arm/cpu/arm926ejs/lpc32xx/clk.c               |  15 +-
 arch/arm/cpu/arm926ejs/lpc32xx/cpu.c               |  15 +-
 arch/arm/cpu/arm926ejs/lpc32xx/devices.c           |  15 +-
 arch/arm/cpu/arm926ejs/lpc32xx/timer.c             |  15 +-
 arch/arm/cpu/arm926ejs/mb86r0x/Makefile            |  18 +-
 arch/arm/cpu/arm926ejs/mb86r0x/asm-offsets.c       |   5 +-
 arch/arm/cpu/arm926ejs/mb86r0x/clock.c             |  18 +-
 arch/arm/cpu/arm926ejs/mb86r0x/reset.c             |  18 +-
 arch/arm/cpu/arm926ejs/mb86r0x/timer.c             |  18 +-
 arch/arm/cpu/arm926ejs/mx25/Makefile               |  18 +-
 arch/arm/cpu/arm926ejs/mx25/asm-offsets.c          |   5 +-
 arch/arm/cpu/arm926ejs/mx25/generic.c              |  15 +-
 arch/arm/cpu/arm926ejs/mx25/reset.c                |  18 +-
 arch/arm/cpu/arm926ejs/mx25/timer.c                |  18 +-
 arch/arm/cpu/arm926ejs/mx27/Makefile               |  18 +-
 arch/arm/cpu/arm926ejs/mx27/asm-offsets.c          |   5 +-
 arch/arm/cpu/arm926ejs/mx27/generic.c              |  15 +-
 arch/arm/cpu/arm926ejs/mx27/reset.c                |  18 +-
 arch/arm/cpu/arm926ejs/mx27/timer.c                |  18 +-
 arch/arm/cpu/arm926ejs/mxs/Makefile                |  18 +-
 arch/arm/cpu/arm926ejs/mxs/clock.c                 |  18 +-
 arch/arm/cpu/arm926ejs/mxs/iomux.c                 |  14 +-
 arch/arm/cpu/arm926ejs/mxs/mxs.c                   |  18 +-
 arch/arm/cpu/arm926ejs/mxs/mxs_init.h              |  18 +-
 arch/arm/cpu/arm926ejs/mxs/spl_boot.c              |  18 +-
 arch/arm/cpu/arm926ejs/mxs/spl_lradc_init.c        |  18 +-
 arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c          |  18 +-
 arch/arm/cpu/arm926ejs/mxs/spl_power_init.c        |  18 +-
 arch/arm/cpu/arm926ejs/mxs/start.S                 |  18 +-
 arch/arm/cpu/arm926ejs/mxs/timer.c                 |  18 +-
 arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds          |  18 +-
 arch/arm/cpu/arm926ejs/nomadik/Makefile            |  18 +-
 arch/arm/cpu/arm926ejs/nomadik/gpio.c              |  18 +-
 arch/arm/cpu/arm926ejs/nomadik/timer.c             |  18 +-
 arch/arm/cpu/arm926ejs/omap/Makefile               |  18 +-
 arch/arm/cpu/arm926ejs/omap/reset.S                |  18 +-
 arch/arm/cpu/arm926ejs/omap/timer.c                |  18 +-
 arch/arm/cpu/arm926ejs/orion5x/Makefile            |  18 +-
 arch/arm/cpu/arm926ejs/orion5x/cpu.c               |  18 +-
 arch/arm/cpu/arm926ejs/orion5x/dram.c              |  18 +-
 arch/arm/cpu/arm926ejs/orion5x/lowlevel_init.S     |  18 +-
 arch/arm/cpu/arm926ejs/orion5x/timer.c             |  18 +-
 arch/arm/cpu/arm926ejs/pantheon/Makefile           |  18 +-
 arch/arm/cpu/arm926ejs/pantheon/cpu.c              |  18 +-
 arch/arm/cpu/arm926ejs/pantheon/dram.c             |  18 +-
 arch/arm/cpu/arm926ejs/pantheon/timer.c            |  18 +-
 arch/arm/cpu/arm926ejs/spear/Makefile              |  18 +-
 arch/arm/cpu/arm926ejs/spear/cpu.c                 |  18 +-
 arch/arm/cpu/arm926ejs/spear/reset.c               |  18 +-
 arch/arm/cpu/arm926ejs/spear/spear600.c            |  18 +-
 arch/arm/cpu/arm926ejs/spear/spl.c                 |  18 +-
 arch/arm/cpu/arm926ejs/spear/spl_boot.c            |  18 +-
 .../spear/spr600_mt47h128m8_3_266_cl5_async.c      |  18 +-
 .../spear/spr600_mt47h32m16_333_cl5_psync.c        |  18 +-
 .../spear/spr600_mt47h32m16_37e_166_cl4_sync.c     |  18 +-
 .../spear/spr600_mt47h64m16_3_333_cl5_psync.c      |  18 +-
 arch/arm/cpu/arm926ejs/spear/start.S               |  18 +-
 arch/arm/cpu/arm926ejs/spear/timer.c               |  18 +-
 arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds        |  18 +-
 arch/arm/cpu/arm926ejs/start.S                     |  18 +-
 arch/arm/cpu/arm926ejs/versatile/Makefile          |  18 +-
 arch/arm/cpu/arm926ejs/versatile/reset.S           |  18 +-
 arch/arm/cpu/arm926ejs/versatile/timer.c           |  18 +-
 arch/arm/cpu/arm946es/Makefile                     |  18 +-
 arch/arm/cpu/arm946es/config.mk                    |  18 +-
 arch/arm/cpu/arm946es/cpu.c                        |  18 +-
 arch/arm/cpu/arm946es/start.S                      |  18 +-
 arch/arm/cpu/arm_intcm/Makefile                    |  18 +-
 arch/arm/cpu/arm_intcm/config.mk                   |  18 +-
 arch/arm/cpu/arm_intcm/cpu.c                       |  18 +-
 arch/arm/cpu/arm_intcm/start.S                     |  18 +-
 arch/arm/cpu/armv7/Makefile                        |  18 +-
 arch/arm/cpu/armv7/am33xx/Makefile                 |  10 +-
 arch/arm/cpu/armv7/am33xx/board.c                  |  10 +-
 arch/arm/cpu/armv7/am33xx/clock_am33xx.c           |  10 +-
 arch/arm/cpu/armv7/am33xx/clock_ti814x.c           |  10 +-
 arch/arm/cpu/armv7/am33xx/config.mk                |  10 +-
 arch/arm/cpu/armv7/am33xx/ddr.c                    |  13 +-
 arch/arm/cpu/armv7/am33xx/elm.c                    |  18 +-
 arch/arm/cpu/armv7/am33xx/emif4.c                  |  10 +-
 arch/arm/cpu/armv7/am33xx/mem.c                    |  15 +-
 arch/arm/cpu/armv7/am33xx/sys_info.c               |  10 +-
 arch/arm/cpu/armv7/am33xx/u-boot-spl.lds           |  18 +-
 arch/arm/cpu/armv7/at91/Makefile                   |  18 +-
 arch/arm/cpu/armv7/at91/clock.c                    |   5 +-
 arch/arm/cpu/armv7/at91/cpu.c                      |  18 +-
 arch/arm/cpu/armv7/at91/reset.c                    |  18 +-
 arch/arm/cpu/armv7/at91/sama5d3_devices.c          |  18 +-
 arch/arm/cpu/armv7/at91/timer.c                    |  18 +-
 arch/arm/cpu/armv7/cache_v7.c                      |  18 +-
 arch/arm/cpu/armv7/config.mk                       |  18 +-
 arch/arm/cpu/armv7/cpu.c                           |  18 +-
 arch/arm/cpu/armv7/exynos/Makefile                 |  15 +-
 arch/arm/cpu/armv7/exynos/clock.c                  |  18 +-
 arch/arm/cpu/armv7/exynos/pinmux.c                 |  18 +-
 arch/arm/cpu/armv7/exynos/power.c                  |  18 +-
 arch/arm/cpu/armv7/exynos/soc.c                    |  18 +-
 arch/arm/cpu/armv7/exynos/system.c                 |  18 +-
 arch/arm/cpu/armv7/exynos/tzpc.c                   |  18 +-
 arch/arm/cpu/armv7/highbank/Makefile               |  18 +-
 arch/arm/cpu/armv7/highbank/timer.c                |  13 +-
 arch/arm/cpu/armv7/lowlevel_init.S                 |  18 +-
 arch/arm/cpu/armv7/mx5/Makefile                    |  18 +-
 arch/arm/cpu/armv7/mx5/asm-offsets.c               |   5 +-
 arch/arm/cpu/armv7/mx5/clock.c                     |  18 +-
 arch/arm/cpu/armv7/mx5/lowlevel_init.S             |  15 +-
 arch/arm/cpu/armv7/mx5/soc.c                       |  18 +-
 arch/arm/cpu/armv7/mx6/Makefile                    |  18 +-
 arch/arm/cpu/armv7/mx6/clock.c                     |  18 +-
 arch/arm/cpu/armv7/mx6/soc.c                       |  18 +-
 arch/arm/cpu/armv7/omap-common/Makefile            |  18 +-
 arch/arm/cpu/armv7/omap-common/abb.c               |  19 +-
 arch/arm/cpu/armv7/omap-common/boot-common.c       |  10 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c     |  18 +-
 arch/arm/cpu/armv7/omap-common/config.mk           |  18 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c       |  18 +-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |  18 +-
 arch/arm/cpu/armv7/omap-common/lowlevel_init.S     |  18 +-
 arch/arm/cpu/armv7/omap-common/mem-common.c        |  15 +-
 arch/arm/cpu/armv7/omap-common/reset.c             |  18 +-
 arch/arm/cpu/armv7/omap-common/timer.c             |  18 +-
 arch/arm/cpu/armv7/omap-common/u-boot-spl.lds      |  18 +-
 arch/arm/cpu/armv7/omap-common/utils.c             |  18 +-
 arch/arm/cpu/armv7/omap3/Makefile                  |  18 +-
 arch/arm/cpu/armv7/omap3/am35x_musb.c              |  15 +-
 arch/arm/cpu/armv7/omap3/board.c                   |  18 +-
 arch/arm/cpu/armv7/omap3/clock.c                   |  15 +-
 arch/arm/cpu/armv7/omap3/config.mk                 |  17 +-
 arch/arm/cpu/armv7/omap3/emac.c                    |  17 +-
 arch/arm/cpu/armv7/omap3/emif4.c                   |  15 +-
 arch/arm/cpu/armv7/omap3/lowlevel_init.S           |  18 +-
 arch/arm/cpu/armv7/omap3/mem.c                     |  15 +-
 arch/arm/cpu/armv7/omap3/sdrc.c                    |  15 +-
 arch/arm/cpu/armv7/omap3/spl_id_nand.c             |  15 +-
 arch/arm/cpu/armv7/omap3/sys_info.c                |  15 +-
 arch/arm/cpu/armv7/omap4/Makefile                  |  18 +-
 arch/arm/cpu/armv7/omap4/config.mk                 |  17 +-
 arch/arm/cpu/armv7/omap4/emif.c                    |  18 +-
 arch/arm/cpu/armv7/omap4/hw_data.c                 |  18 +-
 arch/arm/cpu/armv7/omap4/hwinit.c                  |  18 +-
 arch/arm/cpu/armv7/omap4/prcm-regs.c               |  18 +-
 arch/arm/cpu/armv7/omap4/sdram_elpida.c            |  18 +-
 arch/arm/cpu/armv7/omap5/Makefile                  |  18 +-
 arch/arm/cpu/armv7/omap5/abb.c                     |  19 +-
 arch/arm/cpu/armv7/omap5/config.mk                 |  17 +-
 arch/arm/cpu/armv7/omap5/emif.c                    |  18 +-
 arch/arm/cpu/armv7/omap5/hw_data.c                 |  18 +-
 arch/arm/cpu/armv7/omap5/hwinit.c                  |  18 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c               |  18 +-
 arch/arm/cpu/armv7/omap5/sdram.c                   |  18 +-
 arch/arm/cpu/armv7/rmobile/Makefile                |  18 +-
 arch/arm/cpu/armv7/rmobile/board.c                 |  18 +-
 arch/arm/cpu/armv7/rmobile/config.mk               |  18 +-
 arch/arm/cpu/armv7/rmobile/cpu_info-r8a7740.c      |  18 +-
 arch/arm/cpu/armv7/rmobile/cpu_info-sh73a0.c       |  18 +-
 arch/arm/cpu/armv7/rmobile/cpu_info.c              |  18 +-
 arch/arm/cpu/armv7/rmobile/emac.c                  |  17 +-
 arch/arm/cpu/armv7/rmobile/lowlevel_init.S         |  18 +-
 arch/arm/cpu/armv7/rmobile/timer.c                 |  18 +-
 arch/arm/cpu/armv7/s5p-common/Makefile             |  18 +-
 arch/arm/cpu/armv7/s5p-common/cpu_info.c           |  18 +-
 arch/arm/cpu/armv7/s5p-common/pwm.c                |  18 +-
 arch/arm/cpu/armv7/s5p-common/sromc.c              |  18 +-
 arch/arm/cpu/armv7/s5p-common/timer.c              |  18 +-
 arch/arm/cpu/armv7/s5pc1xx/Makefile                |  18 +-
 arch/arm/cpu/armv7/s5pc1xx/cache.S                 |  18 +-
 arch/arm/cpu/armv7/s5pc1xx/clock.c                 |  18 +-
 arch/arm/cpu/armv7/s5pc1xx/reset.S                 |  18 +-
 arch/arm/cpu/armv7/socfpga/Makefile                |  18 +-
 arch/arm/cpu/armv7/socfpga/config.mk               |  10 +-
 arch/arm/cpu/armv7/socfpga/lowlevel_init.S         |  13 +-
 arch/arm/cpu/armv7/socfpga/misc.c                  |  13 +-
 arch/arm/cpu/armv7/socfpga/spl.c                   |  13 +-
 arch/arm/cpu/armv7/socfpga/timer.c                 |  13 +-
 arch/arm/cpu/armv7/socfpga/u-boot-spl.lds          |  13 +-
 arch/arm/cpu/armv7/start.S                         |  18 +-
 arch/arm/cpu/armv7/syslib.c                        |  15 +-
 arch/arm/cpu/armv7/tegra-common/Makefile           |  18 +-
 arch/arm/cpu/armv7/tegra-common/cmd_enterrcm.c     |  16 +-
 arch/arm/cpu/armv7/tegra20/Makefile                |  18 +-
 arch/arm/cpu/armv7/tegra20/config.mk               |  18 +-
 arch/arm/cpu/armv7/tegra20/display.c               |  18 +-
 arch/arm/cpu/armv7/tegra20/pwm.c                   |  17 +-
 arch/arm/cpu/armv7/u8500/Makefile                  |  18 +-
 arch/arm/cpu/armv7/u8500/clock.c                   |  18 +-
 arch/arm/cpu/armv7/u8500/cpu.c                     |  18 +-
 arch/arm/cpu/armv7/u8500/lowlevel.S                |  17 +-
 arch/arm/cpu/armv7/u8500/prcmu.c                   |  17 +-
 arch/arm/cpu/armv7/u8500/timer.c                   |  18 +-
 arch/arm/cpu/armv7/vf610/Makefile                  |  15 +-
 arch/arm/cpu/armv7/vf610/generic.c                 |  15 +-
 arch/arm/cpu/armv7/vf610/timer.c                   |  15 +-
 arch/arm/cpu/armv7/zynq/Makefile                   |  18 +-
 arch/arm/cpu/armv7/zynq/cpu.c                      |  18 +-
 arch/arm/cpu/armv7/zynq/slcr.c                     |  18 +-
 arch/arm/cpu/armv7/zynq/timer.c                    |  18 +-
 arch/arm/cpu/ixp/Makefile                          |  18 +-
 arch/arm/cpu/ixp/config.mk                         |  18 +-
 arch/arm/cpu/ixp/cpu.c                             |  18 +-
 arch/arm/cpu/ixp/interrupts.c                      |  18 +-
 arch/arm/cpu/ixp/start.S                           |  18 +-
 arch/arm/cpu/ixp/timer.c                           |  18 +-
 arch/arm/cpu/ixp/u-boot.lds                        |  18 +-
 arch/arm/cpu/pxa/Makefile                          |  18 +-
 arch/arm/cpu/pxa/config.mk                         |  18 +-
 arch/arm/cpu/pxa/cpuinfo.c                         |  15 +-
 arch/arm/cpu/pxa/pxa2xx.c                          |  18 +-
 arch/arm/cpu/pxa/start.S                           |  18 +-
 arch/arm/cpu/pxa/timer.c                           |  18 +-
 arch/arm/cpu/pxa/usb.c                             |  18 +-
 arch/arm/cpu/s3c44b0/Makefile                      |  18 +-
 arch/arm/cpu/s3c44b0/cache.c                       |  18 +-
 arch/arm/cpu/s3c44b0/config.mk                     |  18 +-
 arch/arm/cpu/s3c44b0/cpu.c                         |  18 +-
 arch/arm/cpu/s3c44b0/start.S                       |  18 +-
 arch/arm/cpu/s3c44b0/timer.c                       |  18 +-
 arch/arm/cpu/sa1100/Makefile                       |  18 +-
 arch/arm/cpu/sa1100/config.mk                      |  18 +-
 arch/arm/cpu/sa1100/cpu.c                          |  18 +-
 arch/arm/cpu/sa1100/start.S                        |  18 +-
 arch/arm/cpu/sa1100/timer.c                        |  18 +-
 arch/arm/cpu/tegra-common/Makefile                 |  18 +-
 arch/arm/cpu/tegra-common/ap.c                     |  18 +-
 arch/arm/cpu/tegra-common/board.c                  |  18 +-
 arch/arm/cpu/tegra-common/lowlevel_init.S          |  18 +-
 arch/arm/cpu/tegra-common/sys_info.c               |  18 +-
 arch/arm/cpu/tegra-common/timer.c                  |  18 +-
 arch/arm/cpu/tegra20-common/Makefile               |  18 +-
 arch/arm/cpu/tegra20-common/clock.c                |  17 +-
 arch/arm/cpu/tegra20-common/crypto.c               |  18 +-
 arch/arm/cpu/tegra20-common/crypto.h               |  18 +-
 arch/arm/cpu/tegra20-common/emc.c                  |  18 +-
 arch/arm/cpu/tegra20-common/funcmux.c              |  17 +-
 arch/arm/cpu/tegra20-common/pinmux.c               |  17 +-
 arch/arm/cpu/tegra20-common/pmu.c                  |  18 +-
 arch/arm/cpu/tegra20-common/warmboot.c             |  18 +-
 arch/arm/cpu/tegra20-common/warmboot_avp.c         |  18 +-
 arch/arm/cpu/tegra20-common/warmboot_avp.h         |  18 +-
 arch/arm/cpu/u-boot-spl.lds                        |  18 +-
 arch/arm/cpu/u-boot.lds                            |  18 +-
 arch/arm/imx-common/Makefile                       |  18 +-
 arch/arm/imx-common/cmd_bmode.c                    |  18 +-
 arch/arm/imx-common/cmd_hdmidet.c                  |  18 +-
 arch/arm/imx-common/cpu.c                          |  18 +-
 arch/arm/imx-common/i2c-mxv7.c                     |  18 +-
 arch/arm/imx-common/iomux-v3.c                     |  14 +-
 arch/arm/imx-common/misc.c                         |  13 +-
 arch/arm/imx-common/speed.c                        |  18 +-
 arch/arm/imx-common/timer.c                        |  18 +-
 arch/arm/include/asm/arch-a320/a320.h              |  14 +-
 arch/arm/include/asm/arch-am33xx/clock.h           |  10 +-
 arch/arm/include/asm/arch-am33xx/clocks_am33xx.h   |  10 +-
 arch/arm/include/asm/arch-am33xx/cpu.h             |  10 +-
 arch/arm/include/asm/arch-am33xx/ddr_defs.h        |  10 +-
 arch/arm/include/asm/arch-am33xx/elm.h             |  18 +-
 arch/arm/include/asm/arch-am33xx/gpio.h            |  17 +-
 arch/arm/include/asm/arch-am33xx/hardware.h        |  10 +-
 arch/arm/include/asm/arch-am33xx/hardware_am33xx.h |  10 +-
 arch/arm/include/asm/arch-am33xx/hardware_ti814x.h |  10 +-
 arch/arm/include/asm/arch-am33xx/i2c.h             |  18 +-
 arch/arm/include/asm/arch-am33xx/mem.h             |  18 +-
 arch/arm/include/asm/arch-am33xx/omap.h            |  10 +-
 arch/arm/include/asm/arch-am33xx/omap_gpmc.h       |  18 +-
 arch/arm/include/asm/arch-am33xx/spl.h             |  18 +-
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |  10 +-
 arch/arm/include/asm/arch-arm720t/hardware.h       |  18 +-
 arch/arm/include/asm/arch-armada100/armada100.h    |  18 +-
 arch/arm/include/asm/arch-armada100/config.h       |  18 +-
 arch/arm/include/asm/arch-armada100/cpu.h          |  18 +-
 arch/arm/include/asm/arch-armada100/gpio.h         |  18 +-
 arch/arm/include/asm/arch-armada100/mfp.h          |  18 +-
 arch/arm/include/asm/arch-armada100/spi.h          |  18 +-
 .../include/asm/arch-armada100/utmi-armada100.h    |  18 +-
 arch/arm/include/asm/arch-armv7/globaltimer.h      |  18 +-
 arch/arm/include/asm/arch-armv7/sysctrl.h          |  18 +-
 arch/arm/include/asm/arch-armv7/systimer.h         |  18 +-
 arch/arm/include/asm/arch-armv7/wdt.h              |  18 +-
 arch/arm/include/asm/arch-at91/at91_common.h       |  18 +-
 arch/arm/include/asm/arch-at91/at91_dbu.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91_eefc.h         |   5 +-
 arch/arm/include/asm/arch-at91/at91_emac.h         |  18 +-
 arch/arm/include/asm/arch-at91/at91_gpbr.h         |   5 +-
 arch/arm/include/asm/arch-at91/at91_matrix.h       |  18 +-
 arch/arm/include/asm/arch-at91/at91_mc.h           |  18 +-
 arch/arm/include/asm/arch-at91/at91_pdc.h          |  18 +-
 arch/arm/include/asm/arch-at91/at91_pio.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91_pit.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91_pmc.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91_rstc.h         |   5 +-
 arch/arm/include/asm/arch-at91/at91_rtt.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91_shdwn.h        |   5 +-
 arch/arm/include/asm/arch-at91/at91_spi.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91_st.h           |  18 +-
 arch/arm/include/asm/arch-at91/at91_tc.h           |  18 +-
 arch/arm/include/asm/arch-at91/at91_wdt.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91cap9.h          |   5 +-
 arch/arm/include/asm/arch-at91/at91cap9_matrix.h   |   5 +-
 arch/arm/include/asm/arch-at91/at91rm9200.h        |  17 +-
 arch/arm/include/asm/arch-at91/at91sam9260.h       |   5 +-
 .../arm/include/asm/arch-at91/at91sam9260_matrix.h |   5 +-
 arch/arm/include/asm/arch-at91/at91sam9261.h       |   5 +-
 .../arm/include/asm/arch-at91/at91sam9261_matrix.h |   5 +-
 arch/arm/include/asm/arch-at91/at91sam9263.h       |   5 +-
 .../arm/include/asm/arch-at91/at91sam9263_matrix.h |   5 +-
 arch/arm/include/asm/arch-at91/at91sam9_matrix.h   |   6 +-
 arch/arm/include/asm/arch-at91/at91sam9_sdramc.h   |   5 +-
 arch/arm/include/asm/arch-at91/at91sam9_smc.h      |   5 +-
 arch/arm/include/asm/arch-at91/at91sam9g45.h       |   5 +-
 .../arm/include/asm/arch-at91/at91sam9g45_matrix.h |   5 +-
 arch/arm/include/asm/arch-at91/at91sam9x5.h        |   5 +-
 arch/arm/include/asm/arch-at91/at91sam9x5_matrix.h |   5 +-
 arch/arm/include/asm/arch-at91/clk.h               |  18 +-
 arch/arm/include/asm/arch-at91/gpio.h              |   6 +-
 arch/arm/include/asm/arch-at91/hardware.h          |  18 +-
 arch/arm/include/asm/arch-at91/sama5d3.h           |   5 +-
 arch/arm/include/asm/arch-at91/sama5d3_smc.h       |   5 +-
 arch/arm/include/asm/arch-bcm2835/gpio.h           |  13 +-
 arch/arm/include/asm/arch-bcm2835/mbox.h           |  13 +-
 arch/arm/include/asm/arch-davinci/aintc_defs.h     |  18 +-
 arch/arm/include/asm/arch-davinci/da850_lowlevel.h |  17 +-
 arch/arm/include/asm/arch-davinci/da8xx-fb.h       |  14 +-
 arch/arm/include/asm/arch-davinci/da8xx-usb.h      |  14 +-
 arch/arm/include/asm/arch-davinci/davinci_misc.h   |  17 +-
 arch/arm/include/asm/arch-davinci/ddr2_defs.h      |  18 +-
 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h |  17 +-
 arch/arm/include/asm/arch-davinci/emac_defs.h      |  16 +-
 arch/arm/include/asm/arch-davinci/emif_defs.h      |  18 +-
 arch/arm/include/asm/arch-davinci/gpio.h           |  18 +-
 arch/arm/include/asm/arch-davinci/hardware.h       |  21 +-
 arch/arm/include/asm/arch-davinci/i2c_defs.h       |  18 +-
 arch/arm/include/asm/arch-davinci/nand_defs.h      |  18 +-
 arch/arm/include/asm/arch-davinci/pinmux_defs.h    |  14 +-
 arch/arm/include/asm/arch-davinci/pll_defs.h       |  18 +-
 arch/arm/include/asm/arch-davinci/psc_defs.h       |  18 +-
 arch/arm/include/asm/arch-davinci/sdmmc_defs.h     |  14 +-
 arch/arm/include/asm/arch-davinci/spl.h            |  18 +-
 arch/arm/include/asm/arch-davinci/syscfg_defs.h    |  18 +-
 arch/arm/include/asm/arch-davinci/timer_defs.h     |  18 +-
 arch/arm/include/asm/arch-ep93xx/ep93xx.h          |  16 +-
 arch/arm/include/asm/arch-exynos/adc.h             |  18 +-
 arch/arm/include/asm/arch-exynos/clk.h             |  16 +-
 arch/arm/include/asm/arch-exynos/clock.h           |  16 +-
 arch/arm/include/asm/arch-exynos/cpu.h             |  16 +-
 arch/arm/include/asm/arch-exynos/dp.h              |  15 +-
 arch/arm/include/asm/arch-exynos/dp_info.h         |  15 +-
 arch/arm/include/asm/arch-exynos/dsim.h            |  15 +-
 arch/arm/include/asm/arch-exynos/dwmmc.h           |  15 +-
 arch/arm/include/asm/arch-exynos/ehci.h            |  15 +-
 arch/arm/include/asm/arch-exynos/fb.h              |  16 +-
 arch/arm/include/asm/arch-exynos/gpio.h            |  15 +-
 arch/arm/include/asm/arch-exynos/i2s-regs.h        |  18 +-
 arch/arm/include/asm/arch-exynos/mipi_dsim.h       |  15 +-
 arch/arm/include/asm/arch-exynos/mmc.h             |  15 +-
 arch/arm/include/asm/arch-exynos/periph.h          |  18 +-
 arch/arm/include/asm/arch-exynos/pinmux.h          |  18 +-
 arch/arm/include/asm/arch-exynos/power.h           |  18 +-
 arch/arm/include/asm/arch-exynos/pwm.h             |  15 +-
 arch/arm/include/asm/arch-exynos/pwm_backlight.h   |  15 +-
 arch/arm/include/asm/arch-exynos/sound.h           |  18 +-
 arch/arm/include/asm/arch-exynos/spi.h             |  14 +-
 arch/arm/include/asm/arch-exynos/spl.h             |  18 +-
 arch/arm/include/asm/arch-exynos/sromc.h           |  16 +-
 arch/arm/include/asm/arch-exynos/sys_proto.h       |  18 +-
 arch/arm/include/asm/arch-exynos/system.h          |  16 +-
 arch/arm/include/asm/arch-exynos/tzpc.h            |  16 +-
 arch/arm/include/asm/arch-exynos/uart.h            |  16 +-
 arch/arm/include/asm/arch-exynos/watchdog.h        |  18 +-
 arch/arm/include/asm/arch-ixp/ixp425pci.h          |  18 +-
 arch/arm/include/asm/arch-kirkwood/config.h        |  18 +-
 arch/arm/include/asm/arch-kirkwood/cpu.h           |  18 +-
 arch/arm/include/asm/arch-kirkwood/gpio.h          |  18 +-
 arch/arm/include/asm/arch-kirkwood/kirkwood.h      |  18 +-
 arch/arm/include/asm/arch-kirkwood/kw88f6192.h     |  18 +-
 arch/arm/include/asm/arch-kirkwood/kw88f6281.h     |  18 +-
 arch/arm/include/asm/arch-kirkwood/mpp.h           |  18 +-
 arch/arm/include/asm/arch-kirkwood/spi.h           |  18 +-
 arch/arm/include/asm/arch-ks8695/platform.h        |  14 +-
 arch/arm/include/asm/arch-lpc32xx/clk.h            |  15 +-
 arch/arm/include/asm/arch-lpc32xx/config.h         |  15 +-
 arch/arm/include/asm/arch-lpc32xx/cpu.h            |  15 +-
 arch/arm/include/asm/arch-lpc32xx/emc.h            |  15 +-
 arch/arm/include/asm/arch-lpc32xx/sys_proto.h      |  15 +-
 arch/arm/include/asm/arch-lpc32xx/timer.h          |  15 +-
 arch/arm/include/asm/arch-lpc32xx/uart.h           |  15 +-
 arch/arm/include/asm/arch-lpc32xx/wdt.h            |  15 +-
 arch/arm/include/asm/arch-mb86r0x/hardware.h       |  18 +-
 arch/arm/include/asm/arch-mb86r0x/mb86r0x.h        |  18 +-
 arch/arm/include/asm/arch-mx25/clock.h             |  18 +-
 arch/arm/include/asm/arch-mx25/gpio.h              |  18 +-
 arch/arm/include/asm/arch-mx25/imx-regs.h          |  18 +-
 arch/arm/include/asm/arch-mx25/iomux-mx25.h        |  18 +-
 arch/arm/include/asm/arch-mx25/macro.h             |  18 +-
 arch/arm/include/asm/arch-mx27/clock.h             |  18 +-
 arch/arm/include/asm/arch-mx27/gpio.h              |  18 +-
 arch/arm/include/asm/arch-mx27/imx-regs.h          |  18 +-
 arch/arm/include/asm/arch-mx27/mxcmmc.h            |  15 +-
 arch/arm/include/asm/arch-mx27/regs-rtc.h          |  15 +-
 arch/arm/include/asm/arch-mx31/clock.h             |  18 +-
 arch/arm/include/asm/arch-mx31/gpio.h              |  18 +-
 arch/arm/include/asm/arch-mx31/imx-regs.h          |  19 +-
 arch/arm/include/asm/arch-mx31/sys_proto.h         |  18 +-
 arch/arm/include/asm/arch-mx35/clock.h             |  18 +-
 arch/arm/include/asm/arch-mx35/crm_regs.h          |  18 +-
 arch/arm/include/asm/arch-mx35/gpio.h              |  18 +-
 arch/arm/include/asm/arch-mx35/imx-regs.h          |  18 +-
 arch/arm/include/asm/arch-mx35/iomux-mx35.h        |  18 +-
 arch/arm/include/asm/arch-mx35/lowlevel_macro.S    |  15 +-
 arch/arm/include/asm/arch-mx35/spl.h               |  18 +-
 arch/arm/include/asm/arch-mx35/sys_proto.h         |  18 +-
 arch/arm/include/asm/arch-mx5/clock.h              |  18 +-
 arch/arm/include/asm/arch-mx5/crm_regs.h           |  18 +-
 arch/arm/include/asm/arch-mx5/gpio.h               |  18 +-
 arch/arm/include/asm/arch-mx5/imx-regs.h           |  18 +-
 arch/arm/include/asm/arch-mx5/iomux-mx53.h         |  18 +-
 arch/arm/include/asm/arch-mx5/spl.h                |   8 +-
 arch/arm/include/asm/arch-mx5/sys_proto.h          |  18 +-
 arch/arm/include/asm/arch-mx6/clock.h              |  18 +-
 arch/arm/include/asm/arch-mx6/crm_regs.h           |  15 +-
 arch/arm/include/asm/arch-mx6/gpio.h               |  18 +-
 arch/arm/include/asm/arch-mx6/imx-regs.h           |  14 +-
 arch/arm/include/asm/arch-mx6/iomux.h              |  14 +-
 arch/arm/include/asm/arch-mx6/mx6-ddr.h            |  14 +-
 arch/arm/include/asm/arch-mx6/mx6-pins.h           |  14 +-
 arch/arm/include/asm/arch-mx6/mx6dl-ddr.h          |  14 +-
 arch/arm/include/asm/arch-mx6/mx6dl_pins.h         |  15 +-
 arch/arm/include/asm/arch-mx6/mx6q-ddr.h           |  14 +-
 arch/arm/include/asm/arch-mx6/mx6q_pins.h          |  15 +-
 arch/arm/include/asm/arch-mx6/mx6sl_pins.h         |   5 +-
 arch/arm/include/asm/arch-mx6/mxc_hdmi.h           |  14 +-
 arch/arm/include/asm/arch-mx6/sys_proto.h          |  18 +-
 arch/arm/include/asm/arch-mxs/clock.h              |  15 +-
 arch/arm/include/asm/arch-mxs/gpio.h               |  15 +-
 arch/arm/include/asm/arch-mxs/imx-regs.h           |  15 +-
 arch/arm/include/asm/arch-mxs/iomux.h              |  14 +-
 arch/arm/include/asm/arch-mxs/regs-base.h          |  15 +-
 arch/arm/include/asm/arch-mxs/regs-clkctrl-mx23.h  |  15 +-
 arch/arm/include/asm/arch-mxs/regs-clkctrl-mx28.h  |  15 +-
 arch/arm/include/asm/arch-mxs/regs-digctl.h        |  15 +-
 arch/arm/include/asm/arch-mxs/regs-i2c.h           |  15 +-
 arch/arm/include/asm/arch-mxs/regs-lcdif.h         |  15 +-
 arch/arm/include/asm/arch-mxs/regs-lradc.h         |  15 +-
 arch/arm/include/asm/arch-mxs/regs-ocotp.h         |  15 +-
 arch/arm/include/asm/arch-mxs/regs-pinctrl.h       |  15 +-
 arch/arm/include/asm/arch-mxs/regs-power-mx23.h    |  15 +-
 arch/arm/include/asm/arch-mxs/regs-power-mx28.h    |  15 +-
 arch/arm/include/asm/arch-mxs/regs-rtc.h           |  15 +-
 arch/arm/include/asm/arch-mxs/regs-ssp.h           |  15 +-
 arch/arm/include/asm/arch-mxs/regs-timrot.h        |  15 +-
 arch/arm/include/asm/arch-mxs/regs-usb.h           |  15 +-
 arch/arm/include/asm/arch-mxs/regs-usbphy.h        |  15 +-
 arch/arm/include/asm/arch-mxs/sys_proto.h          |  15 +-
 arch/arm/include/asm/arch-nomadik/gpio.h           |  18 +-
 arch/arm/include/asm/arch-nomadik/mtu.h            |  18 +-
 arch/arm/include/asm/arch-omap3/am35x_def.h        |  14 +-
 arch/arm/include/asm/arch-omap3/clock.h            |  15 +-
 arch/arm/include/asm/arch-omap3/clocks_omap3.h     |  15 +-
 arch/arm/include/asm/arch-omap3/cpu.h              |  19 +-
 arch/arm/include/asm/arch-omap3/dma.h              |  15 +-
 arch/arm/include/asm/arch-omap3/ehci.h             |  18 +-
 arch/arm/include/asm/arch-omap3/emac_defs.h        |  18 +-
 arch/arm/include/asm/arch-omap3/emif4.h            |  15 +-
 arch/arm/include/asm/arch-omap3/i2c.h              |  18 +-
 arch/arm/include/asm/arch-omap3/mem.h              |  18 +-
 arch/arm/include/asm/arch-omap3/musb.h             |  17 +-
 arch/arm/include/asm/arch-omap3/mux.h              |  15 +-
 arch/arm/include/asm/arch-omap3/omap3-regs.h       |  18 +-
 arch/arm/include/asm/arch-omap3/omap3.h            |  18 +-
 arch/arm/include/asm/arch-omap3/omap_gpmc.h        |  18 +-
 arch/arm/include/asm/arch-omap3/spl.h              |  18 +-
 arch/arm/include/asm/arch-omap3/sys_proto.h        |  17 +-
 arch/arm/include/asm/arch-omap4/clock.h            |  18 +-
 arch/arm/include/asm/arch-omap4/cpu.h              |  19 +-
 arch/arm/include/asm/arch-omap4/i2c.h              |  18 +-
 arch/arm/include/asm/arch-omap4/mux_omap4.h        |  18 +-
 arch/arm/include/asm/arch-omap4/omap.h             |  18 +-
 arch/arm/include/asm/arch-omap4/spl.h              |  18 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |  15 +-
 arch/arm/include/asm/arch-omap5/clock.h            |  18 +-
 arch/arm/include/asm/arch-omap5/cpu.h              |  19 +-
 arch/arm/include/asm/arch-omap5/i2c.h              |  18 +-
 arch/arm/include/asm/arch-omap5/mux_dra7xx.h       |  18 +-
 arch/arm/include/asm/arch-omap5/mux_omap5.h        |  18 +-
 arch/arm/include/asm/arch-omap5/omap.h             |  18 +-
 arch/arm/include/asm/arch-omap5/spl.h              |  18 +-
 arch/arm/include/asm/arch-omap5/sys_proto.h        |  15 +-
 arch/arm/include/asm/arch-orion5x/cpu.h            |  18 +-
 arch/arm/include/asm/arch-orion5x/mv88f5182.h      |  18 +-
 arch/arm/include/asm/arch-orion5x/orion5x.h        |  18 +-
 arch/arm/include/asm/arch-pantheon/config.h        |  18 +-
 arch/arm/include/asm/arch-pantheon/cpu.h           |  18 +-
 arch/arm/include/asm/arch-pantheon/mfp.h           |  18 +-
 arch/arm/include/asm/arch-pantheon/pantheon.h      |  18 +-
 arch/arm/include/asm/arch-pxa/pxa.h                |  15 +-
 arch/arm/include/asm/arch-pxa/regs-mmc.h           |  15 +-
 arch/arm/include/asm/arch-pxa/regs-uart.h          |  15 +-
 arch/arm/include/asm/arch-pxa/regs-usb.h           |  14 +-
 arch/arm/include/asm/arch-rmobile/sys_proto.h      |  15 +-
 arch/arm/include/asm/arch-s3c24x0/gpio.h           |  18 +-
 arch/arm/include/asm/arch-s3c24x0/iomux.h          |  18 +-
 arch/arm/include/asm/arch-s3c24x0/s3c2400.h        |  18 +-
 arch/arm/include/asm/arch-s3c24x0/s3c2410.h        |  18 +-
 arch/arm/include/asm/arch-s3c24x0/s3c2440.h        |  18 +-
 arch/arm/include/asm/arch-s3c24x0/s3c24x0.h        |  18 +-
 arch/arm/include/asm/arch-s3c24x0/s3c24x0_cpu.h    |  15 +-
 arch/arm/include/asm/arch-s5pc1xx/clk.h            |  16 +-
 arch/arm/include/asm/arch-s5pc1xx/clock.h          |  16 +-
 arch/arm/include/asm/arch-s5pc1xx/cpu.h            |  16 +-
 arch/arm/include/asm/arch-s5pc1xx/gpio.h           |  15 +-
 arch/arm/include/asm/arch-s5pc1xx/mmc.h            |  15 +-
 arch/arm/include/asm/arch-s5pc1xx/power.h          |  16 +-
 arch/arm/include/asm/arch-s5pc1xx/pwm.h            |  15 +-
 arch/arm/include/asm/arch-s5pc1xx/sromc.h          |  15 +-
 arch/arm/include/asm/arch-s5pc1xx/sys_proto.h      |  18 +-
 arch/arm/include/asm/arch-s5pc1xx/uart.h           |  16 +-
 arch/arm/include/asm/arch-s5pc1xx/watchdog.h       |  18 +-
 arch/arm/include/asm/arch-socfpga/reset_manager.h  |  13 +-
 .../include/asm/arch-socfpga/socfpga_base_addrs.h  |  13 +-
 arch/arm/include/asm/arch-socfpga/spl.h            |  13 +-
 arch/arm/include/asm/arch-socfpga/timer.h          |  13 +-
 arch/arm/include/asm/arch-spear/clk.h              |  18 +-
 arch/arm/include/asm/arch-spear/gpio.h             |  18 +-
 arch/arm/include/asm/arch-spear/hardware.h         |  18 +-
 arch/arm/include/asm/arch-spear/spr_defs.h         |  18 +-
 arch/arm/include/asm/arch-spear/spr_emi.h          |  18 +-
 arch/arm/include/asm/arch-spear/spr_gpt.h          |  18 +-
 arch/arm/include/asm/arch-spear/spr_misc.h         |  18 +-
 arch/arm/include/asm/arch-spear/spr_ssp.h          |  18 +-
 arch/arm/include/asm/arch-spear/spr_syscntl.h      |  18 +-
 arch/arm/include/asm/arch-tegra/ap.h               |  18 +-
 arch/arm/include/asm/arch-tegra/board.h            |  18 +-
 arch/arm/include/asm/arch-tegra/clk_rst.h          |  18 +-
 arch/arm/include/asm/arch-tegra/clock.h            |  17 +-
 arch/arm/include/asm/arch-tegra/fuse.h             |  18 +-
 arch/arm/include/asm/arch-tegra/gp_padctrl.h       |  18 +-
 arch/arm/include/asm/arch-tegra/gpio.h             |  18 +-
 arch/arm/include/asm/arch-tegra/mmc.h              |  18 +-
 arch/arm/include/asm/arch-tegra/pmc.h              |  18 +-
 arch/arm/include/asm/arch-tegra/scu.h              |  18 +-
 arch/arm/include/asm/arch-tegra/sys_proto.h        |  18 +-
 arch/arm/include/asm/arch-tegra/tegra.h            |  18 +-
 arch/arm/include/asm/arch-tegra/tegra_mmc.h        |  15 +-
 arch/arm/include/asm/arch-tegra/timer.h            |  17 +-
 arch/arm/include/asm/arch-tegra/uart.h             |  18 +-
 arch/arm/include/asm/arch-tegra/usb.h              |  17 +-
 arch/arm/include/asm/arch-tegra/warmboot.h         |  18 +-
 arch/arm/include/asm/arch-tegra20/apb_misc.h       |  18 +-
 arch/arm/include/asm/arch-tegra20/clock-tables.h   |  17 +-
 arch/arm/include/asm/arch-tegra20/clock.h          |  17 +-
 arch/arm/include/asm/arch-tegra20/dc.h             |  18 +-
 arch/arm/include/asm/arch-tegra20/display.h        |  18 +-
 arch/arm/include/asm/arch-tegra20/emc.h            |  18 +-
 arch/arm/include/asm/arch-tegra20/flow.h           |  18 +-
 arch/arm/include/asm/arch-tegra20/funcmux.h        |  17 +-
 arch/arm/include/asm/arch-tegra20/gp_padctrl.h     |  18 +-
 arch/arm/include/asm/arch-tegra20/gpio.h           |  17 +-
 arch/arm/include/asm/arch-tegra20/hardware.h       |  18 +-
 arch/arm/include/asm/arch-tegra20/pinmux.h         |  18 +-
 arch/arm/include/asm/arch-tegra20/pmu.h            |  18 +-
 arch/arm/include/asm/arch-tegra20/pwm.h            |  17 +-
 arch/arm/include/asm/arch-tegra20/sdram_param.h    |  18 +-
 arch/arm/include/asm/arch-tegra20/spl.h            |  18 +-
 arch/arm/include/asm/arch-tegra20/tegra.h          |  18 +-
 arch/arm/include/asm/arch-tegra30/spl.h            |  18 +-
 arch/arm/include/asm/arch-tnetv107x/clock.h        |  17 +-
 arch/arm/include/asm/arch-tnetv107x/hardware.h     |  17 +-
 arch/arm/include/asm/arch-tnetv107x/mux.h          |  17 +-
 arch/arm/include/asm/arch-tnetv107x/nand_defs.h    |  17 +-
 arch/arm/include/asm/arch-u8500/clock.h            |  18 +-
 arch/arm/include/asm/arch-u8500/gpio.h             |  18 +-
 arch/arm/include/asm/arch-u8500/hardware.h         |  18 +-
 arch/arm/include/asm/arch-u8500/prcmu.h            |  14 +-
 arch/arm/include/asm/arch-u8500/sys_proto.h        |  18 +-
 arch/arm/include/asm/arch-u8500/u8500.h            |  18 +-
 arch/arm/include/asm/arch-vf610/clock.h            |  15 +-
 arch/arm/include/asm/arch-vf610/crm_regs.h         |  15 +-
 arch/arm/include/asm/arch-vf610/imx-regs.h         |  15 +-
 arch/arm/include/asm/arch-vf610/iomux-vf610.h      |  15 +-
 arch/arm/include/asm/arch-zynq/hardware.h          |  18 +-
 arch/arm/include/asm/arch-zynq/sys_proto.h         |  18 +-
 arch/arm/include/asm/armv7.h                       |  18 +-
 arch/arm/include/asm/bootm.h                       |  15 +-
 arch/arm/include/asm/cache.h                       |  18 +-
 arch/arm/include/asm/config.h                      |  16 +-
 arch/arm/include/asm/dma-mapping.h                 |  18 +-
 arch/arm/include/asm/global_data.h                 |  18 +-
 arch/arm/include/asm/imx-common/boot_mode.h        |  18 +-
 arch/arm/include/asm/imx-common/dma.h              |  15 +-
 arch/arm/include/asm/imx-common/gpio.h             |  18 +-
 arch/arm/include/asm/imx-common/imximage.cfg       |   8 +-
 arch/arm/include/asm/imx-common/iomux-v3.h         |  14 +-
 arch/arm/include/asm/imx-common/mx5_video.h        |   5 +-
 arch/arm/include/asm/imx-common/mxc_i2c.h          |  14 +-
 arch/arm/include/asm/imx-common/regs-apbh.h        |  15 +-
 arch/arm/include/asm/imx-common/regs-bch.h         |  15 +-
 arch/arm/include/asm/imx-common/regs-common.h      |  15 +-
 arch/arm/include/asm/imx-common/regs-gpmi.h        |  15 +-
 arch/arm/include/asm/macro.h                       |  18 +-
 arch/arm/include/asm/omap_boot.h                   |  18 +-
 arch/arm/include/asm/omap_common.h                 |  18 +-
 arch/arm/include/asm/omap_gpmc.h                   |  18 +-
 arch/arm/include/asm/omap_musb.h                   |  10 +-
 arch/arm/include/asm/pl310.h                       |  18 +-
 arch/arm/include/asm/sections.h                    |  18 +-
 arch/arm/include/asm/sizes.h                       |  14 +-
 arch/arm/include/asm/spl.h                         |  18 +-
 arch/arm/include/asm/u-boot-arm.h                  |  18 +-
 arch/arm/include/asm/u-boot.h                      |  18 +-
 arch/arm/include/asm/utils.h                       |  18 +-
 arch/arm/lib/Makefile                              |  18 +-
 arch/arm/lib/_ashldi3.S                            |  26 +-
 arch/arm/lib/_ashrdi3.S                            |  26 +-
 arch/arm/lib/_lshrdi3.S                            |  26 +-
 arch/arm/lib/board.c                               |  18 +-
 arch/arm/lib/bootm-fdt.c                           |  18 +-
 arch/arm/lib/bootm.c                               |  14 +-
 arch/arm/lib/cache-cp15.c                          |  18 +-
 arch/arm/lib/cache-pl310.c                         |  18 +-
 arch/arm/lib/cache.c                               |  18 +-
 arch/arm/lib/crt0.S                                |  18 +-
 arch/arm/lib/div0.c                                |  18 +-
 arch/arm/lib/eabi_compat.c                         |   5 +-
 arch/arm/lib/interrupts.c                          |  18 +-
 arch/arm/lib/relocate.S                            |  18 +-
 arch/arm/lib/reset.c                               |  18 +-
 arch/arm/lib/sections.c                            |  18 +-
 arch/arm/lib/spl.c                                 |  18 +-
 arch/avr32/config.mk                               |  18 +-
 arch/avr32/cpu/Makefile                            |  18 +-
 arch/avr32/cpu/at32ap700x/Makefile                 |  18 +-
 arch/avr32/cpu/at32ap700x/clk.c                    |  18 +-
 arch/avr32/cpu/at32ap700x/portmux.c                |  18 +-
 arch/avr32/cpu/cache.c                             |  18 +-
 arch/avr32/cpu/config.mk                           |  18 +-
 arch/avr32/cpu/cpu.c                               |  18 +-
 arch/avr32/cpu/exception.c                         |  18 +-
 arch/avr32/cpu/hsdramc.c                           |  18 +-
 arch/avr32/cpu/interrupts.c                        |  18 +-
 arch/avr32/cpu/portmux-gpio.c                      |  18 +-
 arch/avr32/cpu/portmux-pio.c                       |  18 +-
 arch/avr32/cpu/start.S                             |  18 +-
 arch/avr32/cpu/u-boot.lds                          |  18 +-
 arch/avr32/include/asm/arch-at32ap700x/addrspace.h |  18 +-
 .../avr32/include/asm/arch-at32ap700x/cacheflush.h |  18 +-
 .../include/asm/arch-at32ap700x/chip-features.h    |  18 +-
 arch/avr32/include/asm/arch-at32ap700x/clk.h       |  18 +-
 arch/avr32/include/asm/arch-at32ap700x/gpio.h      |  18 +-
 arch/avr32/include/asm/arch-at32ap700x/hardware.h  |  18 +-
 arch/avr32/include/asm/arch-at32ap700x/hmatrix.h   |  18 +-
 arch/avr32/include/asm/arch-at32ap700x/portmux.h   |  18 +-
 arch/avr32/include/asm/arch-common/portmux-gpio.h  |  18 +-
 arch/avr32/include/asm/arch-common/portmux-pio.h   |  18 +-
 arch/avr32/include/asm/bitops.h                    |  18 +-
 arch/avr32/include/asm/byteorder.h                 |  18 +-
 arch/avr32/include/asm/cache.h                     |  17 +-
 arch/avr32/include/asm/config.h                    |  16 +-
 arch/avr32/include/asm/dma-mapping.h               |  18 +-
 arch/avr32/include/asm/global_data.h               |  18 +-
 arch/avr32/include/asm/hmatrix-common.h            |  18 +-
 arch/avr32/include/asm/io.h                        |  18 +-
 arch/avr32/include/asm/posix_types.h               |  18 +-
 arch/avr32/include/asm/processor.h                 |  18 +-
 arch/avr32/include/asm/ptrace.h                    |  18 +-
 arch/avr32/include/asm/sdram.h                     |  18 +-
 arch/avr32/include/asm/sections.h                  |  18 +-
 arch/avr32/include/asm/setup.h                     |  18 +-
 arch/avr32/include/asm/string.h                    |  18 +-
 arch/avr32/include/asm/types.h                     |  18 +-
 arch/avr32/include/asm/u-boot.h                    |  18 +-
 arch/avr32/lib/Makefile                            |  18 +-
 arch/avr32/lib/board.c                             |  18 +-
 arch/avr32/lib/bootm.c                             |  18 +-
 arch/avr32/lib/interrupts.c                        |  18 +-
 arch/avr32/lib/memset.S                            |  18 +-
 arch/blackfin/config.mk                            |  18 +-
 arch/blackfin/cpu/cpu.h                            |  18 +-
 arch/blackfin/cpu/start.S                          |  18 +-
 arch/blackfin/cpu/u-boot.lds                       |  18 +-
 arch/blackfin/include/asm/bitops.h                 |  18 +-
 arch/blackfin/include/asm/blackfin_local.h         |  18 +-
 arch/blackfin/include/asm/byteorder.h              |  18 +-
 arch/blackfin/include/asm/delay.h                  |  18 +-
 arch/blackfin/include/asm/entry.h                  |  18 +-
 arch/blackfin/include/asm/global_data.h            |  18 +-
 arch/blackfin/include/asm/linkage.h                |  18 +-
 arch/blackfin/include/asm/posix_types.h            |  18 +-
 arch/blackfin/include/asm/processor.h              |  18 +-
 arch/blackfin/include/asm/sections.h               |  18 +-
 arch/blackfin/include/asm/shared_resources.h       |  18 +-
 arch/blackfin/include/asm/string.h                 |  18 +-
 arch/blackfin/include/asm/system.h                 |  18 +-
 arch/blackfin/include/asm/types.h                  |  18 +-
 arch/blackfin/include/asm/u-boot.h                 |  18 +-
 arch/blackfin/lib/Makefile                         |  18 +-
 arch/blackfin/lib/memcmp.S                         |  15 +-
 arch/blackfin/lib/memcpy.S                         |  15 +-
 arch/blackfin/lib/memmove.S                        |  15 +-
 arch/blackfin/lib/memset.S                         |  15 +-
 arch/blackfin/lib/muldi3.c                         |  18 +-
 arch/blackfin/lib/string.c                         |  18 +-
 arch/m68k/config.mk                                |  18 +-
 arch/m68k/cpu/mcf5227x/Makefile                    |  18 +-
 arch/m68k/cpu/mcf5227x/config.mk                   |  18 +-
 arch/m68k/cpu/mcf5227x/cpu.c                       |  18 +-
 arch/m68k/cpu/mcf5227x/cpu_init.c                  |  18 +-
 arch/m68k/cpu/mcf5227x/interrupts.c                |  18 +-
 arch/m68k/cpu/mcf5227x/speed.c                     |  18 +-
 arch/m68k/cpu/mcf5227x/start.S                     |  18 +-
 arch/m68k/cpu/mcf523x/Makefile                     |  18 +-
 arch/m68k/cpu/mcf523x/config.mk                    |  18 +-
 arch/m68k/cpu/mcf523x/cpu.c                        |  18 +-
 arch/m68k/cpu/mcf523x/cpu_init.c                   |  18 +-
 arch/m68k/cpu/mcf523x/interrupts.c                 |  18 +-
 arch/m68k/cpu/mcf523x/speed.c                      |  18 +-
 arch/m68k/cpu/mcf523x/start.S                      |  18 +-
 arch/m68k/cpu/mcf52x2/Makefile                     |  18 +-
 arch/m68k/cpu/mcf52x2/config.mk                    |  18 +-
 arch/m68k/cpu/mcf52x2/cpu.c                        |  18 +-
 arch/m68k/cpu/mcf52x2/cpu.h                        |  18 +-
 arch/m68k/cpu/mcf52x2/cpu_init.c                   |  18 +-
 arch/m68k/cpu/mcf52x2/interrupts.c                 |  18 +-
 arch/m68k/cpu/mcf52x2/speed.c                      |  18 +-
 arch/m68k/cpu/mcf52x2/start.S                      |  18 +-
 arch/m68k/cpu/mcf532x/Makefile                     |  18 +-
 arch/m68k/cpu/mcf532x/config.mk                    |  18 +-
 arch/m68k/cpu/mcf532x/cpu.c                        |  18 +-
 arch/m68k/cpu/mcf532x/cpu_init.c                   |  18 +-
 arch/m68k/cpu/mcf532x/interrupts.c                 |  18 +-
 arch/m68k/cpu/mcf532x/speed.c                      |  18 +-
 arch/m68k/cpu/mcf532x/start.S                      |  18 +-
 arch/m68k/cpu/mcf5445x/Makefile                    |  18 +-
 arch/m68k/cpu/mcf5445x/config.mk                   |  18 +-
 arch/m68k/cpu/mcf5445x/cpu.c                       |  18 +-
 arch/m68k/cpu/mcf5445x/cpu_init.c                  |  18 +-
 arch/m68k/cpu/mcf5445x/interrupts.c                |  18 +-
 arch/m68k/cpu/mcf5445x/pci.c                       |  18 +-
 arch/m68k/cpu/mcf5445x/speed.c                     |  18 +-
 arch/m68k/cpu/mcf5445x/start.S                     |  18 +-
 arch/m68k/cpu/mcf547x_8x/Makefile                  |  18 +-
 arch/m68k/cpu/mcf547x_8x/config.mk                 |  18 +-
 arch/m68k/cpu/mcf547x_8x/cpu.c                     |  18 +-
 arch/m68k/cpu/mcf547x_8x/cpu_init.c                |  18 +-
 arch/m68k/cpu/mcf547x_8x/interrupts.c              |  18 +-
 arch/m68k/cpu/mcf547x_8x/pci.c                     |  18 +-
 arch/m68k/cpu/mcf547x_8x/slicetimer.c              |  18 +-
 arch/m68k/cpu/mcf547x_8x/speed.c                   |  18 +-
 arch/m68k/cpu/mcf547x_8x/start.S                   |  18 +-
 arch/m68k/include/asm/byteorder.h                  |  18 +-
 arch/m68k/include/asm/cache.h                      |  18 +-
 arch/m68k/include/asm/coldfire/ata.h               |  18 +-
 arch/m68k/include/asm/coldfire/crossbar.h          |  18 +-
 arch/m68k/include/asm/coldfire/dspi.h              |  18 +-
 arch/m68k/include/asm/coldfire/edma.h              |  18 +-
 arch/m68k/include/asm/coldfire/eport.h             |  18 +-
 arch/m68k/include/asm/coldfire/flexbus.h           |  18 +-
 arch/m68k/include/asm/coldfire/flexcan.h           |  18 +-
 arch/m68k/include/asm/coldfire/intctrl.h           |  18 +-
 arch/m68k/include/asm/coldfire/lcd.h               |  18 +-
 arch/m68k/include/asm/coldfire/mdha.h              |  18 +-
 arch/m68k/include/asm/coldfire/pwm.h               |  18 +-
 arch/m68k/include/asm/coldfire/qspi.h              |  18 +-
 arch/m68k/include/asm/coldfire/rng.h               |  18 +-
 arch/m68k/include/asm/coldfire/skha.h              |  18 +-
 arch/m68k/include/asm/coldfire/ssi.h               |  18 +-
 arch/m68k/include/asm/config.h                     |  16 +-
 arch/m68k/include/asm/fec.h                        |  18 +-
 arch/m68k/include/asm/fsl_mcdmafec.h               |  18 +-
 arch/m68k/include/asm/global_data.h                |  18 +-
 arch/m68k/include/asm/immap.h                      |  18 +-
 arch/m68k/include/asm/immap_520x.h                 |  18 +-
 arch/m68k/include/asm/immap_5227x.h                |  18 +-
 arch/m68k/include/asm/immap_5235.h                 |  18 +-
 arch/m68k/include/asm/immap_5249.h                 |  18 +-
 arch/m68k/include/asm/immap_5253.h                 |  18 +-
 arch/m68k/include/asm/immap_5271.h                 |  18 +-
 arch/m68k/include/asm/immap_5272.h                 |  18 +-
 arch/m68k/include/asm/immap_5275.h                 |  18 +-
 arch/m68k/include/asm/immap_5282.h                 |  18 +-
 arch/m68k/include/asm/immap_5301x.h                |  18 +-
 arch/m68k/include/asm/immap_5329.h                 |  18 +-
 arch/m68k/include/asm/immap_5441x.h                |  18 +-
 arch/m68k/include/asm/immap_5445x.h                |  18 +-
 arch/m68k/include/asm/immap_547x_8x.h              |  18 +-
 arch/m68k/include/asm/io.h                         |  18 +-
 arch/m68k/include/asm/m520x.h                      |  18 +-
 arch/m68k/include/asm/m5227x.h                     |  18 +-
 arch/m68k/include/asm/m5235.h                      |  18 +-
 arch/m68k/include/asm/m5249.h                      |  18 +-
 arch/m68k/include/asm/m5253.h                      |  18 +-
 arch/m68k/include/asm/m5271.h                      |  18 +-
 arch/m68k/include/asm/m5272.h                      |  18 +-
 arch/m68k/include/asm/m5275.h                      |  18 +-
 arch/m68k/include/asm/m5282.h                      |  18 +-
 arch/m68k/include/asm/m5301x.h                     |  18 +-
 arch/m68k/include/asm/m5329.h                      |  18 +-
 arch/m68k/include/asm/m5441x.h                     |  18 +-
 arch/m68k/include/asm/m5445x.h                     |  18 +-
 arch/m68k/include/asm/m547x_8x.h                   |  18 +-
 arch/m68k/include/asm/ptrace.h                     |  18 +-
 arch/m68k/include/asm/rtc.h                        |  18 +-
 arch/m68k/include/asm/sections.h                   |  18 +-
 arch/m68k/include/asm/timer.h                      |  18 +-
 arch/m68k/include/asm/u-boot.h                     |  16 +-
 arch/m68k/include/asm/uart.h                       |  18 +-
 arch/m68k/lib/Makefile                             |  18 +-
 arch/m68k/lib/board.c                              |  18 +-
 arch/m68k/lib/bootm.c                              |  18 +-
 arch/m68k/lib/cache.c                              |  18 +-
 arch/m68k/lib/interrupts.c                         |  18 +-
 arch/m68k/lib/time.c                               |  18 +-
 arch/m68k/lib/traps.c                              |  18 +-
 arch/microblaze/config.mk                          |  18 +-
 arch/microblaze/cpu/Makefile                       |  18 +-
 arch/microblaze/cpu/cache.c                        |  18 +-
 arch/microblaze/cpu/cpu.c                          |  18 +-
 arch/microblaze/cpu/exception.c                    |  18 +-
 arch/microblaze/cpu/interrupts.c                   |  18 +-
 arch/microblaze/cpu/irq.S                          |  18 +-
 arch/microblaze/cpu/start.S                        |  18 +-
 arch/microblaze/cpu/timer.c                        |  18 +-
 arch/microblaze/cpu/u-boot.lds                     |  18 +-
 arch/microblaze/include/asm/asm.h                  |  18 +-
 arch/microblaze/include/asm/cache.h                |  17 +-
 arch/microblaze/include/asm/config.h               |  16 +-
 arch/microblaze/include/asm/global_data.h          |  18 +-
 arch/microblaze/include/asm/microblaze_intc.h      |  18 +-
 arch/microblaze/include/asm/microblaze_timer.h     |  18 +-
 arch/microblaze/include/asm/processor.h            |  18 +-
 arch/microblaze/include/asm/sections.h             |  18 +-
 arch/microblaze/include/asm/u-boot.h               |  18 +-
 arch/microblaze/lib/Makefile                       |  18 +-
 arch/microblaze/lib/board.c                        |  18 +-
 arch/microblaze/lib/bootm.c                        |  18 +-
 arch/microblaze/lib/muldi3.c                       |  18 +-
 arch/mips/config.mk                                |  18 +-
 arch/mips/cpu/mips32/Makefile                      |  18 +-
 arch/mips/cpu/mips32/au1x00/Makefile               |  18 +-
 arch/mips/cpu/mips32/au1x00/au1x00_eth.c           |  18 +-
 arch/mips/cpu/mips32/au1x00/au1x00_ide.c           |  19 +-
 arch/mips/cpu/mips32/au1x00/au1x00_serial.c        |  18 +-
 arch/mips/cpu/mips32/au1x00/au1x00_usb_ohci.c      |  19 +-
 arch/mips/cpu/mips32/au1x00/config.mk              |  18 +-
 arch/mips/cpu/mips32/cache.S                       |  18 +-
 arch/mips/cpu/mips32/config.mk                     |  18 +-
 arch/mips/cpu/mips32/cpu.c                         |  18 +-
 arch/mips/cpu/mips32/incaip/Makefile               |  18 +-
 arch/mips/cpu/mips32/incaip/config.mk              |  18 +-
 arch/mips/cpu/mips32/incaip/incaip_clock.c         |  18 +-
 arch/mips/cpu/mips32/incaip/incaip_wdt.S           |  18 +-
 arch/mips/cpu/mips32/interrupts.c                  |  18 +-
 arch/mips/cpu/mips32/start.S                       |  18 +-
 arch/mips/cpu/mips32/time.c                        |  18 +-
 arch/mips/cpu/mips64/Makefile                      |  18 +-
 arch/mips/cpu/mips64/cache.S                       |  18 +-
 arch/mips/cpu/mips64/config.mk                     |  18 +-
 arch/mips/cpu/mips64/cpu.c                         |  18 +-
 arch/mips/cpu/mips64/interrupts.c                  |  18 +-
 arch/mips/cpu/mips64/start.S                       |  18 +-
 arch/mips/cpu/mips64/time.c                        |  18 +-
 arch/mips/cpu/u-boot.lds                           |  18 +-
 arch/mips/cpu/xburst/Makefile                      |  18 +-
 arch/mips/cpu/xburst/config.mk                     |  18 +-
 arch/mips/cpu/xburst/cpu.c                         |  18 +-
 arch/mips/cpu/xburst/jz4740.c                      |  15 +-
 arch/mips/cpu/xburst/jz_serial.c                   |  15 +-
 arch/mips/cpu/xburst/start.S                       |  18 +-
 arch/mips/cpu/xburst/timer.c                       |  15 +-
 arch/mips/include/asm/au1x00.h                     |  20 +-
 arch/mips/include/asm/cache.h                      |  17 +-
 arch/mips/include/asm/config.h                     |  16 +-
 arch/mips/include/asm/global_data.h                |  18 +-
 arch/mips/include/asm/sections.h                   |  18 +-
 arch/mips/include/asm/u-boot-mips.h                |   3 +-
 arch/mips/include/asm/u-boot.h                     |  18 +-
 arch/mips/lib/Makefile                             |  18 +-
 arch/mips/lib/board.c                              |  18 +-
 arch/mips/lib/bootm.c                              |  18 +-
 arch/mips/lib/bootm_qemu_mips.c                    |  18 +-
 arch/nds32/config.mk                               |  18 +-
 arch/nds32/cpu/n1213/Makefile                      |  18 +-
 arch/nds32/cpu/n1213/ag101/Makefile                |  18 +-
 arch/nds32/cpu/n1213/ag101/cpu.c                   |  18 +-
 arch/nds32/cpu/n1213/ag101/lowlevel_init.S         |  18 +-
 arch/nds32/cpu/n1213/ag101/timer.c                 |  17 +-
 arch/nds32/cpu/n1213/ag101/watchdog.S              |  18 +-
 arch/nds32/cpu/n1213/ag102/Makefile                |  18 +-
 arch/nds32/cpu/n1213/ag102/cpu.c                   |  18 +-
 arch/nds32/cpu/n1213/ag102/lowlevel_init.S         |  18 +-
 arch/nds32/cpu/n1213/ag102/timer.c                 |  17 +-
 arch/nds32/cpu/n1213/ag102/watchdog.S              |  18 +-
 arch/nds32/cpu/n1213/start.S                       |  18 +-
 arch/nds32/cpu/n1213/u-boot.lds                    |  18 +-
 arch/nds32/include/asm/arch-ag101/ag101.h          |  14 +-
 arch/nds32/include/asm/arch-ag102/ag102.h          |  14 +-
 arch/nds32/include/asm/cache.h                     |  18 +-
 arch/nds32/include/asm/config.h                    |  16 +-
 arch/nds32/include/asm/global_data.h               |  18 +-
 arch/nds32/include/asm/linkage.h                   |  18 +-
 arch/nds32/include/asm/macro.h                     |  18 +-
 arch/nds32/include/asm/sections.h                  |  18 +-
 arch/nds32/include/asm/system.h                    |  18 +-
 arch/nds32/include/asm/u-boot-nds32.h              |  18 +-
 arch/nds32/include/asm/u-boot.h                    |  18 +-
 arch/nds32/lib/Makefile                            |  18 +-
 arch/nds32/lib/board.c                             |  18 +-
 arch/nds32/lib/bootm.c                             |  15 +-
 arch/nds32/lib/cache.c                             |  15 +-
 arch/nds32/lib/interrupts.c                        |  18 +-
 arch/nios2/config.mk                               |  18 +-
 arch/nios2/cpu/Makefile                            |  18 +-
 arch/nios2/cpu/cpu.c                               |  18 +-
 arch/nios2/cpu/epcs.c                              |  18 +-
 arch/nios2/cpu/exceptions.S                        |  18 +-
 arch/nios2/cpu/fdt.c                               |  18 +-
 arch/nios2/cpu/interrupts.c                        |  18 +-
 arch/nios2/cpu/start.S                             |  18 +-
 arch/nios2/cpu/sysid.c                             |  18 +-
 arch/nios2/cpu/traps.c                             |  18 +-
 arch/nios2/cpu/u-boot.lds                          |  18 +-
 arch/nios2/include/asm/bitops.h                    |  18 +-
 arch/nios2/include/asm/byteorder.h                 |  18 +-
 arch/nios2/include/asm/cache.h                     |  18 +-
 arch/nios2/include/asm/config.h                    |  16 +-
 arch/nios2/include/asm/global_data.h               |  18 +-
 arch/nios2/include/asm/io.h                        |  18 +-
 arch/nios2/include/asm/opcodes.h                   |  18 +-
 arch/nios2/include/asm/processor.h                 |  18 +-
 arch/nios2/include/asm/psr.h                       |  18 +-
 arch/nios2/include/asm/ptrace.h                    |  18 +-
 arch/nios2/include/asm/sections.h                  |  18 +-
 arch/nios2/include/asm/string.h                    |  18 +-
 arch/nios2/include/asm/system.h                    |  18 +-
 arch/nios2/include/asm/u-boot.h                    |  18 +-
 arch/nios2/lib/Makefile                            |  18 +-
 arch/nios2/lib/board.c                             |  18 +-
 arch/nios2/lib/bootm.c                             |  18 +-
 arch/nios2/lib/cache.S                             |  18 +-
 arch/nios2/lib/libgcc.c                            |  15 +-
 arch/nios2/lib/longlong.h                          |  15 +-
 arch/nios2/lib/time.c                              |  18 +-
 arch/openrisc/config.mk                            |  15 +-
 arch/openrisc/cpu/Makefile                         |  18 +-
 arch/openrisc/cpu/cache.c                          |  15 +-
 arch/openrisc/cpu/cpu.c                            |  18 +-
 arch/openrisc/cpu/exceptions.c                     |  15 +-
 arch/openrisc/cpu/interrupts.c                     |  15 +-
 arch/openrisc/cpu/start.S                          |  15 +-
 arch/openrisc/include/asm/bitops.h                 |  15 +-
 arch/openrisc/include/asm/bitops/ffs.h             |   5 +-
 arch/openrisc/include/asm/bitops/fls.h             |   5 +-
 arch/openrisc/include/asm/cache.h                  |  15 +-
 arch/openrisc/include/asm/config.h                 |  16 +-
 arch/openrisc/include/asm/global_data.h            |  18 +-
 arch/openrisc/include/asm/gpio.h                   |  15 +-
 arch/openrisc/include/asm/io.h                     |  15 +-
 arch/openrisc/include/asm/openrisc_exc.h           |  15 +-
 arch/openrisc/include/asm/ptrace.h                 |   5 +-
 arch/openrisc/include/asm/sections.h               |  18 +-
 arch/openrisc/include/asm/spr-defs.h               |   5 +-
 arch/openrisc/include/asm/system.h                 |  15 +-
 arch/openrisc/include/asm/types.h                  |  15 +-
 arch/openrisc/include/asm/u-boot.h                 |  18 +-
 arch/openrisc/lib/Makefile                         |  18 +-
 arch/openrisc/lib/board.c                          |  18 +-
 arch/openrisc/lib/bootm.c                          |  18 +-
 arch/openrisc/lib/timer.c                          |  18 +-
 arch/powerpc/config.mk                             |  18 +-
 arch/powerpc/cpu/74xx_7xx/Makefile                 |  18 +-
 arch/powerpc/cpu/74xx_7xx/config.mk                |  18 +-
 arch/powerpc/cpu/74xx_7xx/cpu.c                    |  18 +-
 arch/powerpc/cpu/74xx_7xx/cpu_init.c               |  18 +-
 arch/powerpc/cpu/74xx_7xx/interrupts.c             |  18 +-
 arch/powerpc/cpu/74xx_7xx/io.S                     |  18 +-
 arch/powerpc/cpu/74xx_7xx/kgdb.S                   |  18 +-
 arch/powerpc/cpu/74xx_7xx/speed.c                  |  18 +-
 arch/powerpc/cpu/74xx_7xx/start.S                  |  18 +-
 arch/powerpc/cpu/74xx_7xx/traps.c                  |  18 +-
 arch/powerpc/cpu/74xx_7xx/u-boot.lds               |  18 +-
 arch/powerpc/cpu/mpc512x/Makefile                  |  18 +-
 arch/powerpc/cpu/mpc512x/cache.c                   |  18 +-
 arch/powerpc/cpu/mpc512x/config.mk                 |  18 +-
 arch/powerpc/cpu/mpc512x/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc512x/cpu_init.c                |  19 +-
 arch/powerpc/cpu/mpc512x/diu.c                     |  18 +-
 arch/powerpc/cpu/mpc512x/fixed_sdram.c             |  19 +-
 arch/powerpc/cpu/mpc512x/i2c.c                     |  18 +-
 arch/powerpc/cpu/mpc512x/ide.c                     |  19 +-
 arch/powerpc/cpu/mpc512x/interrupts.c              |  18 +-
 arch/powerpc/cpu/mpc512x/iopin.c                   |  18 +-
 arch/powerpc/cpu/mpc512x/pci.c                     |  18 +-
 arch/powerpc/cpu/mpc512x/serial.c                  |  18 +-
 arch/powerpc/cpu/mpc512x/speed.c                   |  18 +-
 arch/powerpc/cpu/mpc512x/start.S                   |  18 +-
 arch/powerpc/cpu/mpc512x/traps.c                   |  15 +-
 arch/powerpc/cpu/mpc512x/u-boot.lds                |  18 +-
 arch/powerpc/cpu/mpc5xx/Makefile                   |  18 +-
 arch/powerpc/cpu/mpc5xx/config.mk                  |  18 +-
 arch/powerpc/cpu/mpc5xx/cpu.c                      |  17 +-
 arch/powerpc/cpu/mpc5xx/cpu_init.c                 |  17 +-
 arch/powerpc/cpu/mpc5xx/interrupts.c               |  17 +-
 arch/powerpc/cpu/mpc5xx/serial.c                   |  17 +-
 arch/powerpc/cpu/mpc5xx/speed.c                    |  17 +-
 arch/powerpc/cpu/mpc5xx/spi.c                      |  18 +-
 arch/powerpc/cpu/mpc5xx/start.S                    |  18 +-
 arch/powerpc/cpu/mpc5xx/traps.c                    |  18 +-
 arch/powerpc/cpu/mpc5xx/u-boot.lds                 |  18 +-
 arch/powerpc/cpu/mpc5xxx/Makefile                  |  18 +-
 arch/powerpc/cpu/mpc5xxx/config.mk                 |  18 +-
 arch/powerpc/cpu/mpc5xxx/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc5xxx/cpu_init.c                |  18 +-
 arch/powerpc/cpu/mpc5xxx/i2c.c                     |  18 +-
 arch/powerpc/cpu/mpc5xxx/ide.c                     |  18 +-
 arch/powerpc/cpu/mpc5xxx/interrupts.c              |  18 +-
 arch/powerpc/cpu/mpc5xxx/io.S                      |  18 +-
 arch/powerpc/cpu/mpc5xxx/pci_mpc5200.c             |  18 +-
 arch/powerpc/cpu/mpc5xxx/serial.c                  |  18 +-
 arch/powerpc/cpu/mpc5xxx/speed.c                   |  18 +-
 arch/powerpc/cpu/mpc5xxx/spl_boot.c                |  13 +-
 arch/powerpc/cpu/mpc5xxx/start.S                   |  18 +-
 arch/powerpc/cpu/mpc5xxx/traps.c                   |  18 +-
 arch/powerpc/cpu/mpc5xxx/u-boot-customlayout.lds   |  18 +-
 arch/powerpc/cpu/mpc5xxx/u-boot-spl.lds            |  15 +-
 arch/powerpc/cpu/mpc5xxx/u-boot.lds                |  18 +-
 arch/powerpc/cpu/mpc5xxx/usb.c                     |  18 +-
 arch/powerpc/cpu/mpc5xxx/usb_ohci.c                |  19 +-
 arch/powerpc/cpu/mpc824x/Makefile                  |  18 +-
 arch/powerpc/cpu/mpc824x/config.mk                 |  18 +-
 arch/powerpc/cpu/mpc824x/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc824x/cpu_init.c                |  18 +-
 arch/powerpc/cpu/mpc824x/drivers/i2c/i2c.c         |  18 +-
 arch/powerpc/cpu/mpc824x/interrupts.c              |  18 +-
 arch/powerpc/cpu/mpc824x/pci.c                     |   5 +-
 arch/powerpc/cpu/mpc824x/speed.c                   |  18 +-
 arch/powerpc/cpu/mpc824x/start.S                   |  18 +-
 arch/powerpc/cpu/mpc824x/traps.c                   |  18 +-
 arch/powerpc/cpu/mpc824x/u-boot.lds                |  18 +-
 arch/powerpc/cpu/mpc8260/Makefile                  |  18 +-
 arch/powerpc/cpu/mpc8260/config.mk                 |  18 +-
 arch/powerpc/cpu/mpc8260/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc8260/cpu_init.c                |  18 +-
 arch/powerpc/cpu/mpc8260/ether_fcc.c               |  18 +-
 arch/powerpc/cpu/mpc8260/ether_scc.c               |  18 +-
 arch/powerpc/cpu/mpc8260/i2c.c                     |  18 +-
 arch/powerpc/cpu/mpc8260/interrupts.c              |  18 +-
 arch/powerpc/cpu/mpc8260/kgdb.S                    |  18 +-
 arch/powerpc/cpu/mpc8260/pci.c                     |  18 +-
 arch/powerpc/cpu/mpc8260/serial_scc.c              |  18 +-
 arch/powerpc/cpu/mpc8260/serial_smc.c              |  18 +-
 arch/powerpc/cpu/mpc8260/speed.c                   |  18 +-
 arch/powerpc/cpu/mpc8260/speed.h                   |  18 +-
 arch/powerpc/cpu/mpc8260/spi.c                     |  18 +-
 arch/powerpc/cpu/mpc8260/start.S                   |  18 +-
 arch/powerpc/cpu/mpc8260/traps.c                   |  18 +-
 arch/powerpc/cpu/mpc8260/u-boot.lds                |  18 +-
 arch/powerpc/cpu/mpc83xx/Makefile                  |  18 +-
 arch/powerpc/cpu/mpc83xx/cache.c                   |  18 +-
 arch/powerpc/cpu/mpc83xx/config.mk                 |  18 +-
 arch/powerpc/cpu/mpc83xx/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc83xx/cpu_init.c                |  18 +-
 arch/powerpc/cpu/mpc83xx/ecc.c                     |   8 +-
 arch/powerpc/cpu/mpc83xx/fdt.c                     |  18 +-
 arch/powerpc/cpu/mpc83xx/interrupts.c              |  18 +-
 arch/powerpc/cpu/mpc83xx/pci.c                     |  18 +-
 arch/powerpc/cpu/mpc83xx/pcie.c                    |  15 +-
 arch/powerpc/cpu/mpc83xx/qe_io.c                   |  15 +-
 arch/powerpc/cpu/mpc83xx/serdes.c                  |   5 +-
 arch/powerpc/cpu/mpc83xx/spd_sdram.c               |  18 +-
 arch/powerpc/cpu/mpc83xx/speed.c                   |  18 +-
 arch/powerpc/cpu/mpc83xx/spl_minimal.c             |  18 +-
 arch/powerpc/cpu/mpc83xx/start.S                   |  18 +-
 arch/powerpc/cpu/mpc83xx/traps.c                   |  15 +-
 arch/powerpc/cpu/mpc83xx/u-boot-spl.lds            |  18 +-
 arch/powerpc/cpu/mpc83xx/u-boot.lds                |  18 +-
 arch/powerpc/cpu/mpc85xx/Makefile                  |  18 +-
 arch/powerpc/cpu/mpc85xx/b4860_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/b4860_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c          |   5 +-
 arch/powerpc/cpu/mpc85xx/cache.c                   |  18 +-
 arch/powerpc/cpu/mpc85xx/cmd_errata.c              |  18 +-
 arch/powerpc/cpu/mpc85xx/config.mk                 |  18 +-
 arch/powerpc/cpu/mpc85xx/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |  18 +-
 arch/powerpc/cpu/mpc85xx/cpu_init_early.c          |  15 +-
 arch/powerpc/cpu/mpc85xx/ether_fcc.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                     |  18 +-
 arch/powerpc/cpu/mpc85xx/fixed_ivor.S              |  18 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c     |  18 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h     |  15 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |  18 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h      |  15 +-
 arch/powerpc/cpu/mpc85xx/interrupts.c              |  18 +-
 arch/powerpc/cpu/mpc85xx/liodn.c                   |  18 +-
 arch/powerpc/cpu/mpc85xx/mp.c                      |  18 +-
 arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc85xx/p1010_serdes.c            |   5 +-
 arch/powerpc/cpu/mpc85xx/p1021_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/p1022_serdes.c            |   5 +-
 arch/powerpc/cpu/mpc85xx/p1023_serdes.c            |   5 +-
 arch/powerpc/cpu/mpc85xx/p2020_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/p2041_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/p2041_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/p3041_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/p3041_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/p4080_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/p4080_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/p5020_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/p5020_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/p5040_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/p5040_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/pci.c                     |  18 +-
 arch/powerpc/cpu/mpc85xx/portals.c                 |  18 +-
 arch/powerpc/cpu/mpc85xx/qe_io.c                   |  15 +-
 arch/powerpc/cpu/mpc85xx/release.S                 |  18 +-
 arch/powerpc/cpu/mpc85xx/serial_scc.c              |  18 +-
 arch/powerpc/cpu/mpc85xx/speed.c                   |  18 +-
 arch/powerpc/cpu/mpc85xx/spl_minimal.c             |  18 +-
 arch/powerpc/cpu/mpc85xx/start.S                   |  18 +-
 arch/powerpc/cpu/mpc85xx/t1040_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/t1040_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/t4240_ids.c               |  18 +-
 arch/powerpc/cpu/mpc85xx/t4240_serdes.c            |  18 +-
 arch/powerpc/cpu/mpc85xx/tlb.c                     |  18 +-
 arch/powerpc/cpu/mpc85xx/traps.c                   |  18 +-
 arch/powerpc/cpu/mpc85xx/u-boot-nand.lds           |  18 +-
 arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds       |  18 +-
 arch/powerpc/cpu/mpc85xx/u-boot-spl.lds            |  18 +-
 arch/powerpc/cpu/mpc85xx/u-boot.lds                |  18 +-
 arch/powerpc/cpu/mpc86xx/Makefile                  |  18 +-
 arch/powerpc/cpu/mpc86xx/config.mk                 |  18 +-
 arch/powerpc/cpu/mpc86xx/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc86xx/cpu_init.c                |  18 +-
 arch/powerpc/cpu/mpc86xx/interrupts.c              |  18 +-
 arch/powerpc/cpu/mpc86xx/mp.c                      |  18 +-
 arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c          |  18 +-
 arch/powerpc/cpu/mpc86xx/release.S                 |  18 +-
 arch/powerpc/cpu/mpc86xx/speed.c                   |  18 +-
 arch/powerpc/cpu/mpc86xx/start.S                   |  18 +-
 arch/powerpc/cpu/mpc86xx/traps.c                   |  18 +-
 arch/powerpc/cpu/mpc86xx/u-boot.lds                |  18 +-
 arch/powerpc/cpu/mpc8xx/Makefile                   |  18 +-
 arch/powerpc/cpu/mpc8xx/commproc.c                 |  18 +-
 arch/powerpc/cpu/mpc8xx/config.mk                  |  18 +-
 arch/powerpc/cpu/mpc8xx/cpu.c                      |  18 +-
 arch/powerpc/cpu/mpc8xx/cpu_init.c                 |  18 +-
 arch/powerpc/cpu/mpc8xx/fdt.c                      |  18 +-
 arch/powerpc/cpu/mpc8xx/fec.c                      |  18 +-
 arch/powerpc/cpu/mpc8xx/fec.h                      |  18 +-
 arch/powerpc/cpu/mpc8xx/i2c.c                      |  18 +-
 arch/powerpc/cpu/mpc8xx/interrupts.c               |  18 +-
 arch/powerpc/cpu/mpc8xx/kgdb.S                     |  18 +-
 arch/powerpc/cpu/mpc8xx/plprcr_write.S             |  18 +-
 arch/powerpc/cpu/mpc8xx/serial.c                   |  18 +-
 arch/powerpc/cpu/mpc8xx/speed.c                    |  18 +-
 arch/powerpc/cpu/mpc8xx/spi.c                      |  18 +-
 arch/powerpc/cpu/mpc8xx/start.S                    |  18 +-
 arch/powerpc/cpu/mpc8xx/traps.c                    |  18 +-
 arch/powerpc/cpu/mpc8xx/video.c                    |  18 +-
 arch/powerpc/cpu/mpc8xx/wlkbd.c                    |  18 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c                     |  18 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |   5 +-
 arch/powerpc/cpu/mpc8xxx/ddr/interactive.c         |   4 +-
 arch/powerpc/cpu/mpc8xxx/ddr/options.c             |   5 +-
 arch/powerpc/cpu/mpc8xxx/fdt.c                     |  18 +-
 arch/powerpc/cpu/mpc8xxx/fsl_ifc.c                 |  15 +-
 arch/powerpc/cpu/mpc8xxx/law.c                     |  18 +-
 arch/powerpc/cpu/mpc8xxx/srio.c                    |  15 +-
 arch/powerpc/cpu/ppc4xx/40x_spd_sdram.c            |  18 +-
 arch/powerpc/cpu/ppc4xx/44x_spd_ddr.c              |  18 +-
 arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c             |  19 +-
 arch/powerpc/cpu/ppc4xx/4xx_ibm_ddr2_autocalib.c   |  19 +-
 arch/powerpc/cpu/ppc4xx/4xx_pcie.c                 |  14 +-
 arch/powerpc/cpu/ppc4xx/4xx_uart.c                 |  18 +-
 arch/powerpc/cpu/ppc4xx/Makefile                   |  18 +-
 arch/powerpc/cpu/ppc4xx/cache.S                    |   6 +-
 arch/powerpc/cpu/ppc4xx/cmd_chip_config.c          |  19 +-
 arch/powerpc/cpu/ppc4xx/cmd_ecctest.c              |  19 +-
 arch/powerpc/cpu/ppc4xx/config.mk                  |  18 +-
 arch/powerpc/cpu/ppc4xx/cpu.c                      |  18 +-
 arch/powerpc/cpu/ppc4xx/cpu_init.c                 |  18 +-
 arch/powerpc/cpu/ppc4xx/dcr.S                      |  18 +-
 arch/powerpc/cpu/ppc4xx/denali_data_eye.c          |  15 +-
 arch/powerpc/cpu/ppc4xx/denali_spd_ddr2.c          |  19 +-
 arch/powerpc/cpu/ppc4xx/ecc.c                      |  18 +-
 arch/powerpc/cpu/ppc4xx/ecc.h                      |  19 +-
 arch/powerpc/cpu/ppc4xx/fdt.c                      |  18 +-
 arch/powerpc/cpu/ppc4xx/gpio.c                     |  18 +-
 arch/powerpc/cpu/ppc4xx/interrupts.c               |  18 +-
 arch/powerpc/cpu/ppc4xx/kgdb.S                     |  18 +-
 arch/powerpc/cpu/ppc4xx/reginfo.c                  |  15 +-
 arch/powerpc/cpu/ppc4xx/sdram.c                    |  18 +-
 arch/powerpc/cpu/ppc4xx/sdram.h                    |  18 +-
 arch/powerpc/cpu/ppc4xx/speed.c                    |  18 +-
 arch/powerpc/cpu/ppc4xx/spl_boot.c                 |  13 +-
 arch/powerpc/cpu/ppc4xx/tlb.c                      |  18 +-
 arch/powerpc/cpu/ppc4xx/traps.c                    |  18 +-
 arch/powerpc/cpu/ppc4xx/u-boot-spl.lds             |  15 +-
 arch/powerpc/cpu/ppc4xx/u-boot.lds                 |  18 +-
 arch/powerpc/cpu/ppc4xx/uic.c                      |  18 +-
 arch/powerpc/cpu/ppc4xx/usb.c                      |  18 +-
 arch/powerpc/cpu/ppc4xx/usb_ohci.c                 |  19 +-
 arch/powerpc/cpu/ppc4xx/xilinx_irq.c               |  13 +-
 arch/powerpc/include/asm/4xx_pcie.h                |   5 +-
 arch/powerpc/include/asm/5xx_immap.h               |  17 +-
 arch/powerpc/include/asm/apm821xx.h                |  15 +-
 arch/powerpc/include/asm/arch-mpc83xx/gpio.h       |  15 +-
 arch/powerpc/include/asm/config.h                  |  16 +-
 arch/powerpc/include/asm/config_mpc85xx.h          |  16 +-
 arch/powerpc/include/asm/config_mpc86xx.h          |  16 +-
 arch/powerpc/include/asm/fsl_dtsec.h               |  15 +-
 arch/powerpc/include/asm/fsl_enet.h                |   8 +-
 arch/powerpc/include/asm/fsl_fman.h                |  18 +-
 arch/powerpc/include/asm/fsl_ifc.h                 |  15 +-
 arch/powerpc/include/asm/fsl_lbc.h                 |   8 +-
 arch/powerpc/include/asm/fsl_liodn.h               |  18 +-
 arch/powerpc/include/asm/fsl_memac.h               |  15 +-
 arch/powerpc/include/asm/fsl_mpc83xx_serdes.h      |  15 +-
 arch/powerpc/include/asm/fsl_pci.h                 |  16 +-
 arch/powerpc/include/asm/fsl_portals.h             |  18 +-
 arch/powerpc/include/asm/fsl_secure_boot.h         |  18 +-
 arch/powerpc/include/asm/fsl_serdes.h              |  15 +-
 arch/powerpc/include/asm/fsl_srio.h                |  18 +-
 arch/powerpc/include/asm/fsl_tgec.h                |  15 +-
 arch/powerpc/include/asm/global_data.h             |  18 +-
 arch/powerpc/include/asm/immap_512x.h              |  15 +-
 arch/powerpc/include/asm/immap_83xx.h              |  16 +-
 arch/powerpc/include/asm/immap_85xx.h              |  18 +-
 arch/powerpc/include/asm/immap_qe.h                |   5 +-
 arch/powerpc/include/asm/interrupt.h               |  15 +-
 arch/powerpc/include/asm/iopin_8xx.h               |  18 +-
 arch/powerpc/include/asm/mp.h                      |  16 +-
 arch/powerpc/include/asm/mpc512x.h                 |  18 +-
 arch/powerpc/include/asm/mpc85xx_gpio.h            |  15 +-
 arch/powerpc/include/asm/ppc405cr.h                |  15 +-
 arch/powerpc/include/asm/ppc405ep.h                |  15 +-
 arch/powerpc/include/asm/ppc405ex.h                |  15 +-
 arch/powerpc/include/asm/ppc405ez.h                |  15 +-
 arch/powerpc/include/asm/ppc405gp.h                |  15 +-
 arch/powerpc/include/asm/ppc440.h                  |  15 +-
 arch/powerpc/include/asm/ppc440ep_gr.h             |  15 +-
 arch/powerpc/include/asm/ppc440epx_grx.h           |  15 +-
 arch/powerpc/include/asm/ppc440gp.h                |  15 +-
 arch/powerpc/include/asm/ppc440gx.h                |  15 +-
 arch/powerpc/include/asm/ppc440sp.h                |  15 +-
 arch/powerpc/include/asm/ppc440spe.h               |  15 +-
 arch/powerpc/include/asm/ppc460ex_gt.h             |  15 +-
 arch/powerpc/include/asm/ppc460sx.h                |  15 +-
 arch/powerpc/include/asm/ppc4xx-ebc.h              |  18 +-
 arch/powerpc/include/asm/ppc4xx-gpio.h             |  18 +-
 arch/powerpc/include/asm/ppc4xx-i2c.h              |  18 +-
 arch/powerpc/include/asm/ppc4xx-isram.h            |  18 +-
 arch/powerpc/include/asm/ppc4xx-sdram.h            |  18 +-
 arch/powerpc/include/asm/ppc4xx-uic.h              |  18 +-
 arch/powerpc/include/asm/ppc4xx_config.h           |  19 +-
 arch/powerpc/include/asm/sections.h                |  18 +-
 arch/powerpc/include/asm/spl.h                     |  18 +-
 arch/powerpc/include/asm/u-boot.h                  |  16 +-
 arch/powerpc/include/asm/xilinx_irq.h              |  13 +-
 arch/powerpc/lib/Makefile                          |  18 +-
 arch/powerpc/lib/_ashldi3.S                        |   5 +-
 arch/powerpc/lib/_ashrdi3.S                        |   5 +-
 arch/powerpc/lib/_lshrdi3.S                        |   5 +-
 arch/powerpc/lib/bat_rw.c                          |  19 +-
 arch/powerpc/lib/board.c                           |  18 +-
 arch/powerpc/lib/bootm.c                           |  18 +-
 arch/powerpc/lib/cache.c                           |  18 +-
 arch/powerpc/lib/extable.c                         |  18 +-
 arch/powerpc/lib/ide.c                             |  19 +-
 arch/powerpc/lib/ide.h                             |  18 +-
 arch/powerpc/lib/interrupts.c                      |  18 +-
 arch/powerpc/lib/memcpy_mpc5200.c                  |  18 +-
 arch/powerpc/lib/ppccache.S                        |  18 +-
 arch/powerpc/lib/ppcstring.S                       |   5 +-
 arch/powerpc/lib/reloc.S                           |  18 +-
 arch/powerpc/lib/spl.c                             |  13 +-
 arch/powerpc/lib/ticks.S                           |  18 +-
 arch/powerpc/lib/time.c                            |  18 +-
 arch/sandbox/config.mk                             |  18 +-
 arch/sandbox/cpu/Makefile                          |  18 +-
 arch/sandbox/cpu/cpu.c                             |  18 +-
 arch/sandbox/cpu/os.c                              |  18 +-
 arch/sandbox/cpu/start.c                           |  18 +-
 arch/sandbox/cpu/state.c                           |  18 +-
 arch/sandbox/cpu/u-boot.lds                        |  18 +-
 arch/sandbox/include/asm/byteorder.h               |  18 +-
 arch/sandbox/include/asm/cache.h                   |  17 +-
 arch/sandbox/include/asm/config.h                  |  16 +-
 arch/sandbox/include/asm/global_data.h             |  18 +-
 arch/sandbox/include/asm/gpio.h                    |  18 +-
 arch/sandbox/include/asm/io.h                      |  18 +-
 arch/sandbox/include/asm/ptrace.h                  |  18 +-
 arch/sandbox/include/asm/state.h                   |  18 +-
 arch/sandbox/include/asm/string.h                  |  18 +-
 arch/sandbox/include/asm/system.h                  |  18 +-
 arch/sandbox/include/asm/types.h                   |  18 +-
 arch/sandbox/include/asm/u-boot-sandbox.h          |  18 +-
 arch/sandbox/include/asm/u-boot.h                  |  18 +-
 arch/sandbox/include/asm/unaligned.h               |  18 +-
 arch/sandbox/lib/Makefile                          |  18 +-
 arch/sandbox/lib/interrupts.c                      |  18 +-
 arch/sh/config.mk                                  |  18 +-
 arch/sh/cpu/sh2/Makefile                           |  18 +-
 arch/sh/cpu/sh2/cache.c                            |  18 +-
 arch/sh/cpu/sh2/config.mk                          |  18 +-
 arch/sh/cpu/sh2/cpu.c                              |  18 +-
 arch/sh/cpu/sh2/interrupts.c                       |  18 +-
 arch/sh/cpu/sh2/start.S                            |  15 +-
 arch/sh/cpu/sh2/u-boot.lds                         |  18 +-
 arch/sh/cpu/sh2/watchdog.c                         |  15 +-
 arch/sh/cpu/sh3/Makefile                           |  18 +-
 arch/sh/cpu/sh3/cache.c                            |  18 +-
 arch/sh/cpu/sh3/config.mk                          |  18 +-
 arch/sh/cpu/sh3/cpu.c                              |  18 +-
 arch/sh/cpu/sh3/interrupts.c                       |  18 +-
 arch/sh/cpu/sh3/start.S                            |  15 +-
 arch/sh/cpu/sh3/u-boot.lds                         |  18 +-
 arch/sh/cpu/sh3/watchdog.c                         |  15 +-
 arch/sh/cpu/sh4/Makefile                           |  18 +-
 arch/sh/cpu/sh4/cache.c                            |  18 +-
 arch/sh/cpu/sh4/config.mk                          |  18 +-
 arch/sh/cpu/sh4/cpu.c                              |  18 +-
 arch/sh/cpu/sh4/interrupts.c                       |  18 +-
 arch/sh/cpu/sh4/start.S                            |  15 +-
 arch/sh/cpu/sh4/u-boot.lds                         |  18 +-
 arch/sh/cpu/sh4/watchdog.c                         |  15 +-
 arch/sh/include/asm/byteorder.h                    |  15 +-
 arch/sh/include/asm/config.h                       |  16 +-
 arch/sh/include/asm/cpu_sh2.h                      |  15 +-
 arch/sh/include/asm/cpu_sh3.h                      |  15 +-
 arch/sh/include/asm/cpu_sh4.h                      |  15 +-
 arch/sh/include/asm/cpu_sh7720.h                   |  15 +-
 arch/sh/include/asm/cpu_sh7722.h                   |  15 +-
 arch/sh/include/asm/cpu_sh7723.h                   |  15 +-
 arch/sh/include/asm/cpu_sh7724.h                   |  15 +-
 arch/sh/include/asm/cpu_sh7734.h                   |  15 +-
 arch/sh/include/asm/cpu_sh7750.h                   |  15 +-
 arch/sh/include/asm/cpu_sh7752.h                   |  16 +-
 arch/sh/include/asm/cpu_sh7757.h                   |  16 +-
 arch/sh/include/asm/cpu_sh7763.h                   |  15 +-
 arch/sh/include/asm/cpu_sh7780.h                   |  16 +-
 arch/sh/include/asm/cpu_sh7785.h                   |  16 +-
 arch/sh/include/asm/global_data.h                  |  18 +-
 arch/sh/include/asm/macro.h                        |  15 +-
 arch/sh/include/asm/pci.h                          |  18 +-
 arch/sh/include/asm/sections.h                     |  18 +-
 arch/sh/include/asm/u-boot.h                       |  15 +-
 arch/sh/include/asm/zimage.h                       |  18 +-
 arch/sh/lib/Makefile                               |  15 +-
 arch/sh/lib/ashiftlt.S                             |  25 +-
 arch/sh/lib/ashiftrt.S                             |  25 +-
 arch/sh/lib/ashrsi3.S                              |  25 +-
 arch/sh/lib/board.c                                |  15 +-
 arch/sh/lib/bootm.c                                |  18 +-
 arch/sh/lib/lshiftrt.S                             |  25 +-
 arch/sh/lib/movmem.S                               |  25 +-
 arch/sh/lib/time.c                                 |  18 +-
 arch/sh/lib/time_sh2.c                             |  18 +-
 arch/sh/lib/zimageboot.c                           |  18 +-
 arch/sparc/config.mk                               |  18 +-
 arch/sparc/cpu/leon2/Makefile                      |  18 +-
 arch/sparc/cpu/leon2/config.mk                     |  18 +-
 arch/sparc/cpu/leon2/cpu.c                         |  18 +-
 arch/sparc/cpu/leon2/cpu_init.c                    |  19 +-
 arch/sparc/cpu/leon2/interrupts.c                  |  18 +-
 arch/sparc/cpu/leon2/prom.c                        |  19 +-
 arch/sparc/cpu/leon2/serial.c                      |  19 +-
 arch/sparc/cpu/leon2/start.S                       |  18 +-
 arch/sparc/cpu/leon3/Makefile                      |  18 +-
 arch/sparc/cpu/leon3/ambapp.c                      |  18 +-
 arch/sparc/cpu/leon3/config.mk                     |  18 +-
 arch/sparc/cpu/leon3/cpu.c                         |  18 +-
 arch/sparc/cpu/leon3/cpu_init.c                    |  19 +-
 arch/sparc/cpu/leon3/interrupts.c                  |  18 +-
 arch/sparc/cpu/leon3/prom.c                        |  19 +-
 arch/sparc/cpu/leon3/serial.c                      |  19 +-
 arch/sparc/cpu/leon3/start.S                       |  77 ++--
 arch/sparc/cpu/leon3/usb_uhci.c                    |  20 +-
 arch/sparc/cpu/leon3/usb_uhci.h                    |  19 +-
 arch/sparc/include/asm/arch-leon2/asi.h            |  19 +-
 arch/sparc/include/asm/arch-leon3/asi.h            |  19 +-
 arch/sparc/include/asm/asi.h                       |  19 +-
 arch/sparc/include/asm/asmmacro.h                  |  19 +-
 arch/sparc/include/asm/atomic.h                    |  19 +-
 arch/sparc/include/asm/bitops.h                    |  19 +-
 arch/sparc/include/asm/byteorder.h                 |  19 +-
 arch/sparc/include/asm/cache.h                     |  19 +-
 arch/sparc/include/asm/config.h                    |  16 +-
 arch/sparc/include/asm/global_data.h               |  18 +-
 arch/sparc/include/asm/io.h                        |  16 +-
 arch/sparc/include/asm/irq.h                       |  16 +-
 arch/sparc/include/asm/leon.h                      |  16 +-
 arch/sparc/include/asm/leon2.h                     |  16 +-
 arch/sparc/include/asm/leon3.h                     |  16 +-
 arch/sparc/include/asm/machines.h                  |  16 +-
 arch/sparc/include/asm/page.h                      |  16 +-
 arch/sparc/include/asm/posix_types.h               |  16 +-
 arch/sparc/include/asm/processor.h                 |  16 +-
 arch/sparc/include/asm/prom.h                      |  16 +-
 arch/sparc/include/asm/psr.h                       |  16 +-
 arch/sparc/include/asm/ptrace.h                    |  16 +-
 arch/sparc/include/asm/sections.h                  |  18 +-
 arch/sparc/include/asm/srmmu.h                     |  16 +-
 arch/sparc/include/asm/stack.h                     |  16 +-
 arch/sparc/include/asm/string.h                    |  16 +-
 arch/sparc/include/asm/types.h                     |  16 +-
 arch/sparc/include/asm/u-boot.h                    |  16 +-
 arch/sparc/include/asm/winmacro.h                  | 138 +++++-
 arch/sparc/lib/Makefile                            |  18 +-
 arch/sparc/lib/board.c                             |  18 +-
 arch/sparc/lib/bootm.c                             |  18 +-
 arch/sparc/lib/cache.c                             |  18 +-
 arch/sparc/lib/interrupts.c                        |  18 +-
 arch/sparc/lib/time.c                              |  18 +-
 arch/x86/config.mk                                 |  18 +-
 arch/x86/cpu/Makefile                              |  18 +-
 arch/x86/cpu/config.mk                             |  18 +-
 arch/x86/cpu/coreboot/Makefile                     |  18 +-
 arch/x86/cpu/coreboot/asm-offsets.c                |   5 +-
 arch/x86/cpu/coreboot/car.S                        |  18 +-
 arch/x86/cpu/coreboot/config.mk                    |  18 +-
 arch/x86/cpu/coreboot/coreboot.c                   |  18 +-
 arch/x86/cpu/coreboot/pci.c                        |  18 +-
 arch/x86/cpu/coreboot/sdram.c                      |  18 +-
 arch/x86/cpu/cpu.c                                 |  18 +-
 arch/x86/cpu/interrupts.c                          |  18 +-
 arch/x86/cpu/resetvec.S                            |  18 +-
 arch/x86/cpu/start.S                               |  18 +-
 arch/x86/cpu/start16.S                             |  18 +-
 arch/x86/cpu/u-boot.lds                            |  18 +-
 arch/x86/include/asm/cache.h                       |  17 +-
 arch/x86/include/asm/config.h                      |  16 +-
 arch/x86/include/asm/control_regs.h                |  18 +-
 arch/x86/include/asm/global_data.h                 |  18 +-
 arch/x86/include/asm/gpio.h                        |  18 +-
 arch/x86/include/asm/i8254.h                       |  18 +-
 arch/x86/include/asm/i8259.h                       |  18 +-
 arch/x86/include/asm/ibmpc.h                       |  18 +-
 arch/x86/include/asm/init_helpers.h                |  18 +-
 arch/x86/include/asm/interrupt.h                   |  18 +-
 arch/x86/include/asm/ist.h                         |  10 +-
 arch/x86/include/asm/msr-index.h                   |  15 +-
 arch/x86/include/asm/msr.h                         |  15 +-
 arch/x86/include/asm/mtrr.h                        |  15 +-
 arch/x86/include/asm/pci.h                         |  18 +-
 arch/x86/include/asm/processor.h                   |  18 +-
 arch/x86/include/asm/relocate.h                    |  18 +-
 arch/x86/include/asm/sections.h                    |  18 +-
 arch/x86/include/asm/u-boot-x86.h                  |  18 +-
 arch/x86/include/asm/u-boot.h                      |  18 +-
 arch/x86/include/asm/zimage.h                      |  18 +-
 arch/x86/lib/Makefile                              |  18 +-
 arch/x86/lib/bootm.c                               |  18 +-
 arch/x86/lib/cmd_boot.c                            |  18 +-
 arch/x86/lib/init_helpers.c                        |  18 +-
 arch/x86/lib/interrupts.c                          |  18 +-
 arch/x86/lib/pcat_interrupts.c                     |  18 +-
 arch/x86/lib/pcat_timer.c                          |  18 +-
 arch/x86/lib/pci_type1.c                           |  18 +-
 arch/x86/lib/relocate.c                            |  18 +-
 arch/x86/lib/string.c                              |  18 +-
 arch/x86/lib/tsc_timer.c                           |  15 +-
 arch/x86/lib/video.c                               |  18 +-
 arch/x86/lib/zimage.c                              |  18 +-
 board/8dtech/eco5pk/Makefile                       |  18 +-
 board/8dtech/eco5pk/eco5pk.c                       |  14 +-
 board/8dtech/eco5pk/eco5pk.h                       |  14 +-
 board/AndesTech/adp-ag101/Makefile                 |  18 +-
 board/AndesTech/adp-ag101/adp-ag101.c              |  17 +-
 board/AndesTech/adp-ag101p/Makefile                |  18 +-
 board/AndesTech/adp-ag101p/adp-ag101p.c            |  17 +-
 board/AndesTech/adp-ag102/Makefile                 |  18 +-
 board/AndesTech/adp-ag102/adp-ag102.c              |  17 +-
 board/BuS/eb_cpu5282/Makefile                      |  18 +-
 board/BuS/eb_cpu5282/eb_cpu5282.c                  |  18 +-
 board/BuS/eb_cpu5282/u-boot.lds                    |  18 +-
 board/BuS/eb_cpux9k2/Makefile                      |  18 +-
 board/BuS/eb_cpux9k2/cpux9k2.c                     |  18 +-
 board/BuS/vl_ma2sc/Makefile                        |  18 +-
 board/BuS/vl_ma2sc/vl_ma2sc.c                      |  18 +-
 board/CarMediaLab/flea3/Makefile                   |  15 +-
 board/CarMediaLab/flea3/flea3.c                    |  18 +-
 board/CarMediaLab/flea3/lowlevel_init.S            |  15 +-
 board/LEOX/elpt860/Makefile                        |  15 +-
 board/LEOX/elpt860/elpt860.c                       |  15 +-
 board/LEOX/elpt860/flash.c                         |  15 +-
 board/LEOX/elpt860/u-boot.lds                      |  15 +-
 board/LEOX/elpt860/u-boot.lds.debug                |  15 +-
 board/LaCie/common/common.c                        |   5 +-
 board/LaCie/common/common.h                        |   5 +-
 board/LaCie/common/cpld-gpio-bus.c                 |   5 +-
 board/LaCie/common/cpld-gpio-bus.h                 |   5 +-
 board/LaCie/edminiv2/Makefile                      |  18 +-
 board/LaCie/edminiv2/config.mk                     |  18 +-
 board/LaCie/edminiv2/edminiv2.c                    |  18 +-
 board/LaCie/net2big_v2/Makefile                    |  13 +-
 board/LaCie/net2big_v2/kwbimage.cfg                |  13 +-
 board/LaCie/net2big_v2/net2big_v2.c                |  13 +-
 board/LaCie/net2big_v2/net2big_v2.h                |  13 +-
 board/LaCie/netspace_v2/Makefile                   |  13 +-
 board/LaCie/netspace_v2/kwbimage-is2.cfg           |  13 +-
 board/LaCie/netspace_v2/kwbimage-ns2l.cfg          |  13 +-
 board/LaCie/netspace_v2/kwbimage.cfg               |  13 +-
 board/LaCie/netspace_v2/netspace_v2.c              |  13 +-
 board/LaCie/netspace_v2/netspace_v2.h              |  13 +-
 board/LaCie/wireless_space/Makefile                |  13 +-
 board/LaCie/wireless_space/kwbimage.cfg            |  13 +-
 board/LaCie/wireless_space/wireless_space.c        |  13 +-
 board/Marvell/aspenite/Makefile                    |  18 +-
 board/Marvell/aspenite/aspenite.c                  |  18 +-
 board/Marvell/common/ecctest.c                     |  18 +-
 board/Marvell/common/flash.c                       |  18 +-
 board/Marvell/common/i2c.c                         |  18 +-
 board/Marvell/common/i2c.h                         |  18 +-
 board/Marvell/common/intel_flash.c                 |  18 +-
 board/Marvell/common/intel_flash.h                 |  18 +-
 board/Marvell/common/memory.c                      |  18 +-
 board/Marvell/common/serial.c                      |  18 +-
 board/Marvell/common/serial.h                      |  18 +-
 board/Marvell/db64360/64360.h                      |  18 +-
 board/Marvell/db64360/Makefile                     |  18 +-
 board/Marvell/db64360/db64360.c                    |  18 +-
 board/Marvell/db64360/eth.h                        |  18 +-
 board/Marvell/db64360/mpsc.c                       |  18 +-
 board/Marvell/db64360/mpsc.h                       |  18 +-
 board/Marvell/db64360/mv_eth.c                     |  34 +-
 board/Marvell/db64360/mv_eth.h                     |  18 +-
 board/Marvell/db64360/mv_regs.h                    |  18 +-
 board/Marvell/db64360/pci.c                        |  19 +-
 board/Marvell/db64360/sdram_init.c                 |  18 +-
 board/Marvell/db64460/64460.h                      |  18 +-
 board/Marvell/db64460/Makefile                     |  18 +-
 board/Marvell/db64460/db64460.c                    |  18 +-
 board/Marvell/db64460/eth.h                        |  18 +-
 board/Marvell/db64460/mpsc.c                       |  18 +-
 board/Marvell/db64460/mpsc.h                       |  18 +-
 board/Marvell/db64460/mv_eth.c                     |  34 +-
 board/Marvell/db64460/mv_eth.h                     |  18 +-
 board/Marvell/db64460/mv_regs.h                    |  18 +-
 board/Marvell/db64460/pci.c                        |  19 +-
 board/Marvell/db64460/sdram_init.c                 |  18 +-
 board/Marvell/dkb/Makefile                         |  18 +-
 board/Marvell/dkb/dkb.c                            |  18 +-
 board/Marvell/dreamplug/Makefile                   |  18 +-
 board/Marvell/dreamplug/dreamplug.c                |  18 +-
 board/Marvell/dreamplug/dreamplug.h                |  18 +-
 board/Marvell/dreamplug/kwbimage.cfg               |  18 +-
 board/Marvell/gplugd/Makefile                      |  18 +-
 board/Marvell/gplugd/gplugd.c                      |  18 +-
 board/Marvell/guruplug/Makefile                    |  18 +-
 board/Marvell/guruplug/guruplug.c                  |  18 +-
 board/Marvell/guruplug/guruplug.h                  |  18 +-
 board/Marvell/guruplug/kwbimage.cfg                |  18 +-
 board/Marvell/mv88f6281gtw_ge/Makefile             |  18 +-
 board/Marvell/mv88f6281gtw_ge/kwbimage.cfg         |  18 +-
 board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c    |  18 +-
 board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.h    |  18 +-
 board/Marvell/openrd/Makefile                      |  18 +-
 board/Marvell/openrd/kwbimage.cfg                  |  18 +-
 board/Marvell/openrd/openrd.c                      |  18 +-
 board/Marvell/openrd/openrd.h                      |  18 +-
 board/Marvell/rd6281a/Makefile                     |  18 +-
 board/Marvell/rd6281a/kwbimage.cfg                 |  18 +-
 board/Marvell/rd6281a/rd6281a.c                    |  18 +-
 board/Marvell/rd6281a/rd6281a.h                    |  18 +-
 board/Marvell/sheevaplug/Makefile                  |  18 +-
 board/Marvell/sheevaplug/kwbimage.cfg              |  18 +-
 board/Marvell/sheevaplug/sheevaplug.c              |  18 +-
 board/Marvell/sheevaplug/sheevaplug.h              |  18 +-
 board/RPXClassic/Makefile                          |  18 +-
 board/RPXClassic/RPXClassic.c                      |  18 +-
 board/RPXClassic/eccx.c                            |  18 +-
 board/RPXClassic/flash.c                           |  18 +-
 board/RPXClassic/u-boot.lds                        |  18 +-
 board/RPXClassic/u-boot.lds.debug                  |  18 +-
 board/RPXlite/Makefile                             |  18 +-
 board/RPXlite/RPXlite.c                            |  18 +-
 board/RPXlite/flash.c                              |  18 +-
 board/RPXlite/u-boot.lds                           |  18 +-
 board/RPXlite/u-boot.lds.debug                     |  18 +-
 board/RPXlite_dw/Makefile                          |  18 +-
 board/RPXlite_dw/RPXlite_dw.c                      |  18 +-
 board/RPXlite_dw/flash.c                           |  18 +-
 board/RPXlite_dw/u-boot.lds                        |  18 +-
 board/RPXlite_dw/u-boot.lds.debug                  |  18 +-
 board/RRvision/Makefile                            |  18 +-
 board/RRvision/RRvision.c                          |  18 +-
 board/RRvision/flash.c                             |  18 +-
 board/RRvision/u-boot.lds                          |  18 +-
 board/RRvision/video_ad7179.h                      |  18 +-
 board/Seagate/dockstar/Makefile                    |  18 +-
 board/Seagate/dockstar/dockstar.c                  |  18 +-
 board/Seagate/dockstar/dockstar.h                  |  18 +-
 board/Seagate/dockstar/kwbimage.cfg                |  18 +-
 board/Seagate/goflexhome/Makefile                  |  18 +-
 board/Seagate/goflexhome/goflexhome.c              |  18 +-
 board/Seagate/goflexhome/kwbimage.cfg              |  18 +-
 board/a3000/Makefile                               |  18 +-
 board/a3000/a3000.c                                |  18 +-
 board/a3000/flash.c                                |  18 +-
 board/a3m071/Makefile                              |  13 +-
 board/a3m071/a3m071.c                              |   8 +-
 board/a3m071/is46r16320d.h                         |  13 +-
 board/a3m071/mt46v16m16-75.h                       |  13 +-
 board/a4m072/Makefile                              |  18 +-
 board/a4m072/a4m072.c                              |  18 +-
 board/a4m072/mt46v32m16.h                          |  18 +-
 board/actux1/Makefile                              |  18 +-
 board/actux1/actux1.c                              |  18 +-
 board/actux1/actux1_hw.h                           |  18 +-
 board/actux1/u-boot.lds                            |  18 +-
 board/actux2/Makefile                              |  18 +-
 board/actux2/actux2.c                              |  18 +-
 board/actux2/actux2_hw.h                           |  18 +-
 board/actux2/u-boot.lds                            |  18 +-
 board/actux3/Makefile                              |  18 +-
 board/actux3/actux3.c                              |  18 +-
 board/actux3/actux3_hw.h                           |  18 +-
 board/actux3/u-boot.lds                            |  18 +-
 board/actux4/Makefile                              |  18 +-
 board/actux4/actux4.c                              |  18 +-
 board/actux4/actux4_hw.h                           |  18 +-
 board/adder/Makefile                               |  18 +-
 board/adder/adder.c                                |  18 +-
 board/adder/u-boot.lds                             |  18 +-
 board/afeb9260/Makefile                            |  18 +-
 board/afeb9260/afeb9260.c                          |  18 +-
 board/afeb9260/partition.c                         |  17 +-
 board/ait/cam_enc_4xx/Makefile                     |  18 +-
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |  14 +-
 board/ait/cam_enc_4xx/u-boot-spl.lds               |  18 +-
 board/ait/cam_enc_4xx/ublimage.cfg                 |  18 +-
 board/alphaproject/ap_sh4a_4a/Makefile             |  15 +-
 board/alphaproject/ap_sh4a_4a/ap_sh4a_4a.c         |  14 +-
 board/alphaproject/ap_sh4a_4a/lowlevel_init.S      |  11 +-
 board/altera/common/AMDLV065D.c                    |  18 +-
 board/altera/common/epled.c                        |  18 +-
 board/altera/common/flash.c                        |  18 +-
 board/altera/common/sevenseg.c                     |  18 +-
 board/altera/common/sevenseg.h                     |  18 +-
 board/altera/nios2-generic/Makefile                |  18 +-
 board/altera/nios2-generic/config.mk               |  18 +-
 board/altera/nios2-generic/nios2-generic.c         |  18 +-
 board/altera/nios2-generic/u-boot.lds              |  18 +-
 board/altera/socfpga_cyclone5/Makefile             |  18 +-
 board/altera/socfpga_cyclone5/socfpga_cyclone5.c   |  13 +-
 board/amcc/acadia/Makefile                         |  18 +-
 board/amcc/acadia/acadia.c                         |  18 +-
 board/amcc/acadia/cmd_acadia.c                     |  19 +-
 board/amcc/acadia/config.mk                        |  18 +-
 board/amcc/acadia/memory.c                         |  18 +-
 board/amcc/acadia/pll.c                            |  18 +-
 board/amcc/acadia/u-boot-nand.lds                  |  18 +-
 board/amcc/bamboo/Makefile                         |  18 +-
 board/amcc/bamboo/bamboo.c                         |  18 +-
 board/amcc/bamboo/bamboo.h                         |  18 +-
 board/amcc/bamboo/config.mk                        |  18 +-
 board/amcc/bamboo/flash.c                          |  18 +-
 board/amcc/bamboo/init.S                           |  18 +-
 board/amcc/bamboo/u-boot-nand.lds                  |  18 +-
 board/amcc/bluestone/Makefile                      |  18 +-
 board/amcc/bluestone/bluestone.c                   |  15 +-
 board/amcc/bluestone/config.mk                     |  18 +-
 board/amcc/bluestone/init.S                        |  18 +-
 board/amcc/bubinga/Makefile                        |  18 +-
 board/amcc/bubinga/bubinga.c                       |  18 +-
 board/amcc/bubinga/flash.c                         |  18 +-
 board/amcc/canyonlands/Makefile                    |  18 +-
 board/amcc/canyonlands/canyonlands.c               |  15 +-
 board/amcc/canyonlands/chip_config.c               |  19 +-
 board/amcc/canyonlands/config.mk                   |  18 +-
 board/amcc/canyonlands/init.S                      |  18 +-
 board/amcc/canyonlands/u-boot-nand.lds             |  18 +-
 board/amcc/common/flash.c                          |  18 +-
 board/amcc/ebony/Makefile                          |  18 +-
 board/amcc/ebony/config.mk                         |  18 +-
 board/amcc/ebony/ebony.c                           |  18 +-
 board/amcc/ebony/flash.c                           |  18 +-
 board/amcc/ebony/init.S                            |  19 +-
 board/amcc/katmai/Makefile                         |  18 +-
 board/amcc/katmai/chip_config.c                    |  19 +-
 board/amcc/katmai/config.mk                        |  18 +-
 board/amcc/katmai/init.S                           |  18 +-
 board/amcc/katmai/katmai.c                         |  19 +-
 board/amcc/kilauea/Makefile                        |  18 +-
 board/amcc/kilauea/chip_config.c                   |  19 +-
 board/amcc/kilauea/config.mk                       |  18 +-
 board/amcc/kilauea/kilauea.c                       |  18 +-
 board/amcc/kilauea/u-boot-nand.lds                 |  18 +-
 board/amcc/luan/Makefile                           |  18 +-
 board/amcc/luan/config.mk                          |  18 +-
 board/amcc/luan/flash.c                            |  18 +-
 board/amcc/luan/init.S                             |  18 +-
 board/amcc/luan/luan.c                             |  18 +-
 board/amcc/makalu/Makefile                         |  18 +-
 board/amcc/makalu/cmd_pll.c                        |  19 +-
 board/amcc/makalu/init.S                           |  18 +-
 board/amcc/makalu/makalu.c                         |  18 +-
 board/amcc/ocotea/Makefile                         |  18 +-
 board/amcc/ocotea/config.mk                        |  18 +-
 board/amcc/ocotea/flash.c                          |  18 +-
 board/amcc/ocotea/init.S                           |  18 +-
 board/amcc/ocotea/ocotea.c                         |  18 +-
 board/amcc/ocotea/ocotea.h                         |  18 +-
 board/amcc/redwood/Makefile                        |  18 +-
 board/amcc/redwood/config.mk                       |  18 +-
 board/amcc/redwood/init.S                          |  18 +-
 board/amcc/redwood/redwood.c                       |  19 +-
 board/amcc/redwood/redwood.h                       |  18 +-
 board/amcc/sequoia/Makefile                        |  18 +-
 board/amcc/sequoia/chip_config.c                   |  19 +-
 board/amcc/sequoia/config.mk                       |  18 +-
 board/amcc/sequoia/init.S                          |  18 +-
 board/amcc/sequoia/sdram.c                         |  15 +-
 board/amcc/sequoia/sequoia.c                       |  15 +-
 board/amcc/sequoia/u-boot-nand.lds                 |  18 +-
 board/amcc/sequoia/u-boot-ram.lds                  |  18 +-
 board/amcc/taihu/Makefile                          |  18 +-
 board/amcc/taihu/flash.c                           |  18 +-
 board/amcc/taihu/lcd.c                             |  18 +-
 board/amcc/taihu/taihu.c                           |  18 +-
 board/amcc/taihu/update.c                          |  18 +-
 board/amcc/taishan/Makefile                        |  18 +-
 board/amcc/taishan/config.mk                       |  18 +-
 board/amcc/taishan/init.S                          |  18 +-
 board/amcc/taishan/lcd.c                           |  18 +-
 board/amcc/taishan/showinfo.c                      |  18 +-
 board/amcc/taishan/taishan.c                       |  18 +-
 board/amcc/taishan/update.c                        |  18 +-
 board/amcc/walnut/Makefile                         |  18 +-
 board/amcc/walnut/flash.c                          |  18 +-
 board/amcc/walnut/walnut.c                         |  18 +-
 board/amcc/yosemite/Makefile                       |  18 +-
 board/amcc/yosemite/config.mk                      |  18 +-
 board/amcc/yosemite/init.S                         |  19 +-
 board/amcc/yosemite/yosemite.c                     |  18 +-
 board/amcc/yucca/Makefile                          |  18 +-
 board/amcc/yucca/cmd_yucca.c                       |  18 +-
 board/amcc/yucca/config.mk                         |  18 +-
 board/amcc/yucca/flash.c                           |  18 +-
 board/amcc/yucca/init.S                            |  18 +-
 board/amcc/yucca/yucca.c                           |  20 +-
 board/amcc/yucca/yucca.h                           |  18 +-
 board/armltd/integrator/Makefile                   |  18 +-
 board/armltd/integrator/arm-ebi.h                  |  18 +-
 board/armltd/integrator/integrator-sc.h            |  18 +-
 board/armltd/integrator/integrator.c               |  18 +-
 board/armltd/integrator/lowlevel_init.S            |  18 +-
 board/armltd/integrator/pci.c                      |  18 +-
 board/armltd/integrator/pci_v3.h                   |  14 +-
 board/armltd/integrator/timer.c                    |  18 +-
 board/armltd/versatile/Makefile                    |  18 +-
 board/armltd/versatile/lowlevel_init.S             |  18 +-
 board/armltd/versatile/versatile.c                 |  18 +-
 board/armltd/vexpress/Makefile                     |  18 +-
 board/armltd/vexpress/vexpress_common.c            |  18 +-
 board/astro/mcf5373l/Makefile                      |  18 +-
 board/astro/mcf5373l/fpga.c                        |  19 +-
 board/astro/mcf5373l/mcf5373l.c                    |  18 +-
 board/astro/mcf5373l/u-boot.lds                    |  18 +-
 board/atc/Makefile                                 |  18 +-
 board/atc/atc.c                                    |  18 +-
 board/atc/flash.c                                  |  18 +-
 board/atc/ti113x.c                                 |  19 +-
 board/atmel/at91rm9200ek/Makefile                  |  18 +-
 board/atmel/at91rm9200ek/at91rm9200ek.c            |  18 +-
 board/atmel/at91rm9200ek/led.c                     |  18 +-
 board/atmel/at91sam9260ek/Makefile                 |  18 +-
 board/atmel/at91sam9260ek/at91sam9260ek.c          |  18 +-
 board/atmel/at91sam9260ek/led.c                    |  18 +-
 board/atmel/at91sam9260ek/partition.c              |  16 +-
 board/atmel/at91sam9261ek/Makefile                 |  18 +-
 board/atmel/at91sam9261ek/at91sam9261ek.c          |  18 +-
 board/atmel/at91sam9261ek/led.c                    |  18 +-
 board/atmel/at91sam9261ek/partition.c              |  16 +-
 board/atmel/at91sam9263ek/Makefile                 |  18 +-
 board/atmel/at91sam9263ek/at91sam9263ek.c          |  18 +-
 board/atmel/at91sam9263ek/led.c                    |  18 +-
 board/atmel/at91sam9263ek/partition.c              |  16 +-
 board/atmel/at91sam9m10g45ek/Makefile              |  18 +-
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c    |  18 +-
 board/atmel/at91sam9m10g45ek/led.c                 |  18 +-
 board/atmel/at91sam9n12ek/Makefile                 |  18 +-
 board/atmel/at91sam9n12ek/at91sam9n12ek.c          |  18 +-
 board/atmel/at91sam9rlek/Makefile                  |  18 +-
 board/atmel/at91sam9rlek/at91sam9rlek.c            |  18 +-
 board/atmel/at91sam9rlek/led.c                     |  18 +-
 board/atmel/at91sam9rlek/partition.c               |  16 +-
 board/atmel/at91sam9x5ek/Makefile                  |  18 +-
 board/atmel/at91sam9x5ek/at91sam9x5ek.c            |  18 +-
 board/atmel/atngw100/Makefile                      |  17 +-
 board/atmel/atngw100/atngw100.c                    |  18 +-
 board/atmel/atngw100mkii/Makefile                  |  17 +-
 board/atmel/atngw100mkii/atngw100mkii.c            |  18 +-
 board/atmel/atstk1000/Makefile                     |  18 +-
 board/atmel/atstk1000/atstk1000.c                  |  18 +-
 board/atmel/sama5d3xek/Makefile                    |  18 +-
 board/atmel/sama5d3xek/sama5d3xek.c                |  18 +-
 board/avionic-design/common/tamonten.c             |  18 +-
 board/avionic-design/medcom-wide/Makefile          |  18 +-
 board/avionic-design/plutux/Makefile               |  18 +-
 board/avionic-design/tec/Makefile                  |  18 +-
 board/avnet/fx12mm/Makefile                        |  18 +-
 board/avnet/fx12mm/fx12mm.c                        |  19 +-
 board/avnet/fx12mm/xparameters.h                   |  18 +-
 board/avnet/v5fx30teval/Makefile                   |  18 +-
 board/avnet/v5fx30teval/v5fx30teval.c              |  13 +-
 board/avnet/v5fx30teval/xparameters.h              |  13 +-
 board/balloon3/Makefile                            |  15 +-
 board/balloon3/balloon3.c                          |  15 +-
 board/bc3450/Makefile                              |  18 +-
 board/bc3450/bc3450.c                              |  18 +-
 board/bc3450/cmd_bc3450.c                          |  18 +-
 board/bc3450/mt48lc16m16a2-75.h                    |  18 +-
 board/bct-brettl2/Makefile                         |  18 +-
 board/bct-brettl2/config.mk                        |  18 +-
 board/bf506f-ezkit/Makefile                        |  18 +-
 board/bf518f-ezbrd/Makefile                        |  18 +-
 board/bf518f-ezbrd/config.mk                       |  18 +-
 board/bf525-ucr2/Makefile                          |  18 +-
 board/bf526-ezbrd/Makefile                         |  18 +-
 board/bf526-ezbrd/config.mk                        |  18 +-
 board/bf527-ad7160-eval/Makefile                   |  18 +-
 board/bf527-ad7160-eval/config.mk                  |  18 +-
 board/bf527-ezkit/Makefile                         |  18 +-
 board/bf527-ezkit/config.mk                        |  18 +-
 board/bf527-sdp/Makefile                           |  18 +-
 board/bf527-sdp/config.mk                          |  18 +-
 board/bf533-ezkit/Makefile                         |  18 +-
 board/bf533-ezkit/bf533-ezkit.c                    |  18 +-
 board/bf533-ezkit/config.mk                        |  18 +-
 board/bf533-ezkit/flash-defines.h                  |  18 +-
 board/bf533-ezkit/flash.c                          |  18 +-
 board/bf533-ezkit/psd4256.h                        |  18 +-
 board/bf533-stamp/Makefile                         |  18 +-
 board/bf533-stamp/bf533-stamp.c                    |  18 +-
 board/bf533-stamp/config.mk                        |  18 +-
 board/bf537-minotaur/Makefile                      |  18 +-
 board/bf537-minotaur/config.mk                     |  18 +-
 board/bf537-pnav/Makefile                          |  18 +-
 board/bf537-srv1/Makefile                          |  18 +-
 board/bf537-srv1/config.mk                         |  18 +-
 board/bf537-stamp/Makefile                         |  18 +-
 board/bf537-stamp/bf537-stamp.c                    |  18 +-
 board/bf537-stamp/config.mk                        |  18 +-
 board/bf538f-ezkit/Makefile                        |  18 +-
 board/bf538f-ezkit/config.mk                       |  18 +-
 board/bf548-ezkit/Makefile                         |  18 +-
 board/bf548-ezkit/config.mk                        |  18 +-
 board/bf561-acvilon/Makefile                       |  18 +-
 board/bf561-acvilon/bf561-acvilon.c                |  15 +-
 board/bf561-acvilon/config.mk                      |  18 +-
 board/bf561-ezkit/Makefile                         |  18 +-
 board/bf561-ezkit/bf561-ezkit.c                    |  18 +-
 board/bf561-ezkit/config.mk                        |  18 +-
 board/bf609-ezkit/Makefile                         |  18 +-
 board/blackstamp/Makefile                          |  18 +-
 board/blackvme/Makefile                            |  18 +-
 board/bluegiga/apx4devkit/Makefile                 |  18 +-
 board/bluegiga/apx4devkit/apx4devkit.c             |  13 +-
 board/bluegiga/apx4devkit/spl_boot.c               |  13 +-
 board/bluewater/snapper9260/Makefile               |  18 +-
 board/bluewater/snapper9260/snapper9260.c          |  15 +-
 board/boundary/nitrogen6x/1066mhz_4x128mx16.cfg    |  20 +-
 board/boundary/nitrogen6x/1066mhz_4x256mx16.cfg    |  20 +-
 board/boundary/nitrogen6x/800mhz_2x128mx16.cfg     |  20 +-
 board/boundary/nitrogen6x/800mhz_2x256mx16.cfg     |  20 +-
 board/boundary/nitrogen6x/800mhz_4x128mx16.cfg     |  19 +-
 board/boundary/nitrogen6x/800mhz_4x256mx16.cfg     |  20 +-
 board/boundary/nitrogen6x/Makefile                 |  15 +-
 board/boundary/nitrogen6x/clocks.cfg               |  18 +-
 board/boundary/nitrogen6x/ddr-setup.cfg            |  18 +-
 board/boundary/nitrogen6x/nitrogen6dl.cfg          |  18 +-
 board/boundary/nitrogen6x/nitrogen6dl2g.cfg        |  18 +-
 board/boundary/nitrogen6x/nitrogen6q.cfg           |  18 +-
 board/boundary/nitrogen6x/nitrogen6q2g.cfg         |  18 +-
 board/boundary/nitrogen6x/nitrogen6s.cfg           |  18 +-
 board/boundary/nitrogen6x/nitrogen6s1g.cfg         |  18 +-
 board/boundary/nitrogen6x/nitrogen6x.c             |  18 +-
 board/br4/Makefile                                 |  18 +-
 board/br4/config.mk                                |  18 +-
 board/buffalo/lsxl/Makefile                        |  18 +-
 board/buffalo/lsxl/kwbimage-lschl.cfg              |  18 +-
 board/buffalo/lsxl/kwbimage-lsxhl.cfg              |  18 +-
 board/buffalo/lsxl/lsxl.c                          |  18 +-
 board/buffalo/lsxl/lsxl.h                          |  18 +-
 board/calao/sbc35_a9g20/Makefile                   |  18 +-
 board/calao/sbc35_a9g20/sbc35_a9g20.c              |  18 +-
 board/calao/sbc35_a9g20/spi.c                      |  18 +-
 board/calao/tny_a9260/Makefile                     |  18 +-
 board/calao/tny_a9260/spi.c                        |  18 +-
 board/calao/tny_a9260/tny_a9260.c                  |  18 +-
 board/canmb/Makefile                               |  18 +-
 board/canmb/canmb.c                                |  18 +-
 board/canmb/mt48lc16m32s2-75.h                     |  18 +-
 board/chromebook-x86/coreboot/Makefile             |  18 +-
 board/chromebook-x86/coreboot/coreboot_start.S     |  18 +-
 board/cloudengines/pogo_e02/Makefile               |  16 +-
 board/cloudengines/pogo_e02/kwbimage.cfg           |  16 +-
 board/cloudengines/pogo_e02/pogo_e02.c             |  16 +-
 board/cloudengines/pogo_e02/pogo_e02.h             |  16 +-
 board/cm-bf527/Makefile                            |  18 +-
 board/cm-bf527/config.mk                           |  18 +-
 board/cm-bf533/Makefile                            |  18 +-
 board/cm-bf533/config.mk                           |  18 +-
 board/cm-bf537e/Makefile                           |  18 +-
 board/cm-bf537e/config.mk                          |  18 +-
 board/cm-bf537u/Makefile                           |  18 +-
 board/cm-bf537u/config.mk                          |  18 +-
 board/cm-bf548/Makefile                            |  18 +-
 board/cm-bf548/config.mk                           |  18 +-
 board/cm-bf561/Makefile                            |  18 +-
 board/cm-bf561/config.mk                           |  18 +-
 board/cm4008/Makefile                              |  18 +-
 board/cm4008/cm4008.c                              |  18 +-
 board/cm4008/flash.c                               |  18 +-
 board/cm41xx/Makefile                              |  18 +-
 board/cm41xx/cm41xx.c                              |  18 +-
 board/cm41xx/flash.c                               |  18 +-
 board/cm5200/Makefile                              |  18 +-
 board/cm5200/cm5200.c                              |  18 +-
 board/cm5200/cm5200.h                              |  15 +-
 board/cm5200/cmd_cm5200.c                          |  18 +-
 board/cm5200/fwupdate.c                            |  18 +-
 board/cm5200/fwupdate.h                            |  18 +-
 board/cmi/Makefile                                 |  18 +-
 board/cmi/cmi.c                                    |  18 +-
 board/cmi/flash.c                                  |  18 +-
 board/cobra5272/Makefile                           |  18 +-
 board/cobra5272/cobra5272.c                        |  18 +-
 board/cobra5272/config.mk                          |  18 +-
 board/cobra5272/flash.c                            |  18 +-
 board/cobra5272/u-boot.lds                         |  18 +-
 board/cogent/Makefile                              |  18 +-
 board/cogent/config.mk                             |  18 +-
 board/cogent/flash.c                               |  18 +-
 board/cogent/mb.c                                  |  18 +-
 board/cogent/mb.h                                  |  18 +-
 board/cogent/u-boot.lds                            |  18 +-
 board/cogent/u-boot.lds.debug                      |  18 +-
 board/comelit/dig297/Makefile                      |  18 +-
 board/comelit/dig297/dig297.c                      |  18 +-
 board/comelit/dig297/dig297.h                      |  18 +-
 board/compulab/cm_t35/Makefile                     |  16 +-
 board/compulab/cm_t35/cm_t35.c                     |  17 +-
 board/compulab/cm_t35/display.c                    |  18 +-
 board/compulab/cm_t35/eeprom.c                     |  14 +-
 board/compulab/cm_t35/eeprom.h                     |  15 +-
 board/compulab/cm_t35/leds.c                       |  15 +-
 board/compulab/trimslice/Makefile                  |  19 +-
 board/compulab/trimslice/trimslice.c               |  18 +-
 board/congatec/cgtqmx6eval/Makefile                |  15 +-
 board/congatec/cgtqmx6eval/cgtqmx6eval.c           |  15 +-
 board/corscience/tricorder/Makefile                |  18 +-
 board/corscience/tricorder/tricorder.c             |  18 +-
 board/corscience/tricorder/tricorder.h             |  18 +-
 board/cpc45/Makefile                               |  18 +-
 board/cpc45/cpc45.c                                |  18 +-
 board/cpc45/flash.c                                |  18 +-
 board/cpc45/ide.c                                  |  18 +-
 board/cpc45/pd67290.c                              |  19 +-
 board/cpc45/plx9030.c                              |  19 +-
 board/cpu86/Makefile                               |  18 +-
 board/cpu86/cpu86.c                                |  18 +-
 board/cpu86/flash.c                                |  18 +-
 board/cpu87/Makefile                               |  18 +-
 board/cpu87/cpu87.c                                |  18 +-
 board/cpu87/flash.c                                |  18 +-
 board/cray/L1/L1.c                                 |  18 +-
 board/cray/L1/L1.h                                 |  18 +-
 board/cray/L1/Makefile                             |  18 +-
 board/cray/L1/flash.c                              |  18 +-
 board/cray/L1/u-boot.lds.debug                     |  18 +-
 board/csb272/Makefile                              |  18 +-
 board/csb272/csb272.c                              |  18 +-
 board/csb472/Makefile                              |  18 +-
 board/csb472/csb472.c                              |  18 +-
 board/cu824/Makefile                               |  18 +-
 board/cu824/cu824.c                                |  18 +-
 board/cu824/flash.c                                |  18 +-
 board/d-link/dns325/Makefile                       |  18 +-
 board/d-link/dns325/dns325.c                       |  18 +-
 board/d-link/dns325/dns325.h                       |  18 +-
 board/d-link/dns325/kwbimage.cfg                   |  18 +-
 board/dave/PPChameleonEVB/Makefile                 |  18 +-
 board/dave/PPChameleonEVB/PPChameleonEVB.c         |  18 +-
 board/dave/PPChameleonEVB/flash.c                  |  18 +-
 board/dave/PPChameleonEVB/nand.c                   |  18 +-
 board/dave/PPChameleonEVB/u-boot.lds               |  18 +-
 board/dave/common/flash.c                          |  18 +-
 board/dave/common/fpga.c                           |  18 +-
 board/dave/common/pci.c                            |  18 +-
 board/davedenx/aria/Makefile                       |  18 +-
 board/davedenx/aria/aria.c                         |  19 +-
 board/davedenx/qong/Makefile                       |  18 +-
 board/davedenx/qong/fpga.c                         |  19 +-
 board/davedenx/qong/lowlevel_init.S                |  15 +-
 board/davedenx/qong/qong.c                         |  18 +-
 board/davedenx/qong/qong_fpga.h                    |  18 +-
 board/davinci/da8xxevm/Makefile                    |  18 +-
 board/davinci/da8xxevm/da830evm.c                  |  14 +-
 board/davinci/da8xxevm/da850evm.c                  |  14 +-
 board/davinci/da8xxevm/hawkboard.c                 |  14 +-
 board/davinci/da8xxevm/u-boot-spl-da850evm.lds     |  18 +-
 board/davinci/da8xxevm/u-boot-spl-hawk.lds         |  18 +-
 board/davinci/dm355evm/Makefile                    |  18 +-
 board/davinci/dm355evm/dm355evm.c                  |  14 +-
 board/davinci/dm355leopard/Makefile                |  18 +-
 board/davinci/dm355leopard/dm355leopard.c          |  14 +-
 board/davinci/dm365evm/Makefile                    |  18 +-
 board/davinci/dm365evm/dm365evm.c                  |  14 +-
 board/davinci/dm6467evm/Makefile                   |  18 +-
 board/davinci/dm6467evm/dm6467evm.c                |  14 +-
 board/davinci/dvevm/Makefile                       |  18 +-
 board/davinci/dvevm/board_init.S                   |  15 +-
 board/davinci/dvevm/dvevm.c                        |  14 +-
 board/davinci/ea20/Makefile                        |  18 +-
 board/davinci/ea20/ea20.c                          |  14 +-
 board/davinci/schmoogie/Makefile                   |  18 +-
 board/davinci/schmoogie/board_init.S               |  15 +-
 board/davinci/schmoogie/schmoogie.c                |  14 +-
 board/davinci/sffsdr/Makefile                      |  18 +-
 board/davinci/sffsdr/board_init.S                  |  15 +-
 board/davinci/sffsdr/sffsdr.c                      |  17 +-
 board/davinci/sonata/Makefile                      |  18 +-
 board/davinci/sonata/board_init.S                  |  15 +-
 board/davinci/sonata/sonata.c                      |  14 +-
 board/dbau1x00/Makefile                            |  18 +-
 board/dbau1x00/config.mk                           |  18 +-
 board/dbau1x00/dbau1x00.c                          |  18 +-
 board/denx/m28evk/Makefile                         |  18 +-
 board/denx/m28evk/m28evk.c                         |  18 +-
 board/denx/m28evk/spl_boot.c                       |  18 +-
 board/denx/m53evk/Makefile                         |  15 +-
 board/denx/m53evk/imximage.cfg                     |  18 +-
 board/denx/m53evk/m53evk.c                         |  18 +-
 board/dnp5370/Makefile                             |  18 +-
 board/dnp5370/dnp5370.c                            |  18 +-
 board/dvlhost/Makefile                             |  18 +-
 board/dvlhost/dvlhost.c                            |  18 +-
 board/dvlhost/dvlhost_hw.h                         |  18 +-
 board/dvlhost/u-boot.lds                           |  18 +-
 board/dvlhost/watchdog.c                           |  18 +-
 board/eXalion/Makefile                             |  18 +-
 board/eXalion/eXalion.c                            |  18 +-
 board/eXalion/eXalion.h                            |  18 +-
 board/eXalion/piix_pci.h                           |  18 +-
 board/earthlcd/favr-32-ezkit/Makefile              |  16 +-
 board/earthlcd/favr-32-ezkit/favr-32-ezkit.c       |  16 +-
 board/earthlcd/favr-32-ezkit/flash.c               |  16 +-
 board/egnite/ethernut5/Makefile                    |  18 +-
 board/egnite/ethernut5/ethernut5.c                 |  18 +-
 board/egnite/ethernut5/ethernut5_pwrman.c          |  18 +-
 board/egnite/ethernut5/ethernut5_pwrman.h          |  18 +-
 board/eltec/elppc/Makefile                         |  18 +-
 board/eltec/elppc/asm_init.S                       |  18 +-
 board/eltec/elppc/eepro100_srom.c                  |  18 +-
 board/eltec/elppc/elppc.c                          |  18 +-
 board/eltec/elppc/flash.c                          |  18 +-
 board/eltec/elppc/misc.c                           |  18 +-
 board/eltec/elppc/mpc107_i2c.c                     |  18 +-
 board/eltec/elppc/pci.c                            |  18 +-
 board/eltec/elppc/srom.h                           |  18 +-
 board/eltec/mhpc/Makefile                          |  18 +-
 board/eltec/mhpc/flash.c                           |  18 +-
 board/eltec/mhpc/mhpc.c                            |  18 +-
 board/eltec/mhpc/u-boot.lds                        |  18 +-
 board/eltec/mhpc/u-boot.lds.debug                  |  18 +-
 board/emk/common/am79c874.c                        |  18 +-
 board/emk/common/flash.c                           |  18 +-
 board/emk/common/vpd.c                             |  18 +-
 board/emk/top5200/Makefile                         |  18 +-
 board/emk/top5200/top5200.c                        |  18 +-
 board/emk/top860/Makefile                          |  18 +-
 board/emk/top860/top860.c                          |  18 +-
 board/emk/top860/u-boot.lds                        |  18 +-
 board/emk/top860/u-boot.lds.debug                  |  18 +-
 board/emk/top9000/Makefile                         |  18 +-
 board/emk/top9000/spi.c                            |  18 +-
 board/emk/top9000/top9000.c                        |  18 +-
 board/enbw/enbw_cmc/Makefile                       |  18 +-
 board/enbw/enbw_cmc/enbw_cmc.c                     |  14 +-
 board/ep8248/Makefile                              |  18 +-
 board/ep8248/ep8248.c                              |  18 +-
 board/ep8260/Makefile                              |  18 +-
 board/ep8260/ep8260.c                              |  18 +-
 board/ep8260/flash.c                               |  18 +-
 board/ep82xxm/Makefile                             |  18 +-
 board/ep82xxm/ep82xxm.c                            |  18 +-
 board/ep88x/Makefile                               |  18 +-
 board/ep88x/ep88x.c                                |  18 +-
 board/ep88x/u-boot.lds                             |  18 +-
 board/esd/adciop/Makefile                          |  18 +-
 board/esd/adciop/adciop.c                          |  18 +-
 board/esd/adciop/adciop.h                          |  18 +-
 board/esd/adciop/flash.c                           |  18 +-
 board/esd/apc405/Makefile                          |  18 +-
 board/esd/apc405/apc405.c                          |  18 +-
 board/esd/ar405/Makefile                           |  18 +-
 board/esd/ar405/ar405.c                            |  18 +-
 board/esd/ar405/ar405.h                            |  18 +-
 board/esd/ar405/flash.c                            |  18 +-
 board/esd/ash405/Makefile                          |  18 +-
 board/esd/ash405/ash405.c                          |  18 +-
 board/esd/ash405/flash.c                           |  18 +-
 board/esd/canbt/Makefile                           |  18 +-
 board/esd/canbt/canbt.c                            |  18 +-
 board/esd/canbt/canbt.h                            |  18 +-
 board/esd/canbt/flash.c                            |  18 +-
 board/esd/cms700/Makefile                          |  18 +-
 board/esd/cms700/cms700.c                          |  18 +-
 board/esd/cms700/flash.c                           |  18 +-
 board/esd/common/auto_update.c                     |  18 +-
 board/esd/common/auto_update.h                     |  18 +-
 board/esd/common/cmd_loadpci.c                     |  18 +-
 board/esd/common/esd405ep_nand.c                   |  18 +-
 board/esd/common/flash.c                           |  18 +-
 board/esd/common/fpga.c                            |  18 +-
 board/esd/common/lcd.c                             |  18 +-
 board/esd/common/lcd.h                             |  18 +-
 board/esd/common/misc.c                            |  18 +-
 board/esd/common/pci.c                             |  18 +-
 board/esd/common/s1d13505_640_480_16bpp.h          |  18 +-
 board/esd/common/s1d13704_320_240_4bpp.h           |  18 +-
 board/esd/common/s1d13705_320_240_8bpp.h           |  18 +-
 board/esd/common/s1d13806_1024_768_8bpp.h          |  18 +-
 board/esd/common/s1d13806_320_240_4bpp.h           |  18 +-
 board/esd/common/s1d13806_640_480_16bpp.h          |  18 +-
 board/esd/common/s1d13806_640_480_8bpp.h           |  18 +-
 board/esd/common/xilinx_jtag/lenval.c              |  18 +-
 board/esd/common/xilinx_jtag/lenval.h              |  18 +-
 board/esd/common/xilinx_jtag/micro.c               |  18 +-
 board/esd/common/xilinx_jtag/micro.h               |  18 +-
 board/esd/common/xilinx_jtag/ports.c               |  18 +-
 board/esd/common/xilinx_jtag/ports.h               |  18 +-
 board/esd/cpci2dp/Makefile                         |  18 +-
 board/esd/cpci2dp/cpci2dp.c                        |  18 +-
 board/esd/cpci2dp/flash.c                          |  18 +-
 board/esd/cpci405/Makefile                         |  18 +-
 board/esd/cpci405/cpci405.c                        |  18 +-
 board/esd/cpci405/flash.c                          |  18 +-
 board/esd/cpci5200/Makefile                        |  18 +-
 board/esd/cpci5200/cpci5200.c                      |  18 +-
 board/esd/cpci5200/mt46v16m16-75.h                 |  18 +-
 board/esd/cpci5200/strataflash.c                   |  18 +-
 board/esd/cpci750/64360.h                          |  18 +-
 board/esd/cpci750/Makefile                         |  18 +-
 board/esd/cpci750/cpci750.c                        |  18 +-
 board/esd/cpci750/eth.h                            |  18 +-
 board/esd/cpci750/i2c.c                            |  18 +-
 board/esd/cpci750/i2c.h                            |  18 +-
 board/esd/cpci750/ide.c                            |  19 +-
 board/esd/cpci750/local.h                          |  18 +-
 board/esd/cpci750/mpsc.c                           |  18 +-
 board/esd/cpci750/mpsc.h                           |  18 +-
 board/esd/cpci750/mv_eth.c                         |  18 +-
 board/esd/cpci750/mv_eth.h                         |  18 +-
 board/esd/cpci750/mv_regs.h                        |  18 +-
 board/esd/cpci750/pci.c                            |  19 +-
 board/esd/cpci750/sdram_init.c                     |  18 +-
 board/esd/cpci750/serial.c                         |  18 +-
 board/esd/cpci750/serial.h                         |  18 +-
 board/esd/cpciiser4/Makefile                       |  18 +-
 board/esd/cpciiser4/cpciiser4.c                    |  18 +-
 board/esd/cpciiser4/cpciiser4.h                    |  18 +-
 board/esd/cpciiser4/flash.c                        |  18 +-
 board/esd/dasa_sim/Makefile                        |  18 +-
 board/esd/dasa_sim/cmd_dasa_sim.c                  |  19 +-
 board/esd/dasa_sim/dasa_sim.c                      |  18 +-
 board/esd/dasa_sim/dasa_sim.h                      |  18 +-
 board/esd/dasa_sim/eeprom.c                        |  19 +-
 board/esd/dasa_sim/flash.c                         |  18 +-
 board/esd/dasa_sim/u-boot.lds                      |  18 +-
 board/esd/dp405/Makefile                           |  18 +-
 board/esd/dp405/dp405.c                            |  18 +-
 board/esd/dp405/flash.c                            |  18 +-
 board/esd/du405/Makefile                           |  18 +-
 board/esd/du405/du405.c                            |  18 +-
 board/esd/du405/du405.h                            |  18 +-
 board/esd/du405/flash.c                            |  18 +-
 board/esd/du440/Makefile                           |  18 +-
 board/esd/du440/config.mk                          |  18 +-
 board/esd/du440/du440.c                            |  15 +-
 board/esd/du440/du440.h                            |  15 +-
 board/esd/du440/init.S                             |  18 +-
 board/esd/hh405/Makefile                           |  18 +-
 board/esd/hh405/flash.c                            |  18 +-
 board/esd/hh405/hh405.c                            |  18 +-
 board/esd/hub405/Makefile                          |  18 +-
 board/esd/hub405/flash.c                           |  18 +-
 board/esd/hub405/hub405.c                          |  18 +-
 board/esd/mecp5123/Makefile                        |  18 +-
 board/esd/mecp5123/mecp5123.c                      |  19 +-
 board/esd/mecp5200/Makefile                        |  18 +-
 board/esd/mecp5200/mecp5200.c                      |  18 +-
 board/esd/mecp5200/mt46v16m16-75.h                 |  18 +-
 board/esd/meesc/Makefile                           |  18 +-
 board/esd/meesc/meesc.c                            |  18 +-
 board/esd/meesc/partition.c                        |  16 +-
 board/esd/ocrtc/Makefile                           |  18 +-
 board/esd/ocrtc/cmd_ocrtc.c                        |  18 +-
 board/esd/ocrtc/flash.c                            |  18 +-
 board/esd/ocrtc/ocrtc.c                            |  18 +-
 board/esd/ocrtc/ocrtc.h                            |  18 +-
 board/esd/otc570/Makefile                          |  18 +-
 board/esd/otc570/otc570.c                          |  18 +-
 board/esd/otc570/partition.c                       |  16 +-
 board/esd/pci405/Makefile                          |  18 +-
 board/esd/pci405/cmd_pci405.c                      |  18 +-
 board/esd/pci405/flash.c                           |  18 +-
 board/esd/pci405/pci405.c                          |  18 +-
 board/esd/pci405/pci405.h                          |  18 +-
 board/esd/pf5200/Makefile                          |  18 +-
 board/esd/pf5200/flash.c                           |  18 +-
 board/esd/pf5200/mt46v16m16-75.h                   |  18 +-
 board/esd/pf5200/pf5200.c                          |  18 +-
 board/esd/plu405/Makefile                          |  18 +-
 board/esd/plu405/flash.c                           |  18 +-
 board/esd/plu405/plu405.c                          |  18 +-
 board/esd/pmc405/Makefile                          |  18 +-
 board/esd/pmc405/pmc405.c                          |  18 +-
 board/esd/pmc405de/Makefile                        |  18 +-
 board/esd/pmc405de/chip_config.c                   |  19 +-
 board/esd/pmc405de/pmc405de.c                      |  18 +-
 board/esd/pmc440/Makefile                          |  18 +-
 board/esd/pmc440/cmd_pmc440.c                      |  19 +-
 board/esd/pmc440/config.mk                         |  18 +-
 board/esd/pmc440/fpga.c                            |  18 +-
 board/esd/pmc440/fpga.h                            |  18 +-
 board/esd/pmc440/init.S                            |  19 +-
 board/esd/pmc440/pmc440.c                          |  15 +-
 board/esd/pmc440/pmc440.h                          |  18 +-
 board/esd/pmc440/sdram.c                           |  15 +-
 board/esd/pmc440/u-boot-nand.lds                   |  18 +-
 board/esd/tasreg/Makefile                          |  18 +-
 board/esd/tasreg/config.mk                         |  18 +-
 board/esd/tasreg/flash.c                           |  18 +-
 board/esd/tasreg/tasreg.c                          |  18 +-
 board/esd/tasreg/u-boot.lds                        |  18 +-
 board/esd/vme8349/Makefile                         |  18 +-
 board/esd/vme8349/caddy.c                          |  19 +-
 board/esd/vme8349/caddy.h                          |  19 +-
 board/esd/vme8349/pci.c                            |  19 +-
 board/esd/vme8349/vme8349.c                        |  19 +-
 board/esd/vme8349/vme8349pin.h                     |  19 +-
 board/esd/voh405/Makefile                          |  18 +-
 board/esd/voh405/flash.c                           |  18 +-
 board/esd/voh405/voh405.c                          |  18 +-
 board/esd/vom405/Makefile                          |  18 +-
 board/esd/vom405/flash.c                           |  18 +-
 board/esd/vom405/vom405.c                          |  18 +-
 board/esd/wuh405/Makefile                          |  18 +-
 board/esd/wuh405/flash.c                           |  18 +-
 board/esd/wuh405/wuh405.c                          |  18 +-
 board/esg/ima3-mx53/Makefile                       |  15 +-
 board/esg/ima3-mx53/ima3-mx53.c                    |  17 +-
 board/esg/ima3-mx53/imximage.cfg                   |  18 +-
 board/espt/Makefile                                |  15 +-
 board/espt/espt.c                                  |  15 +-
 board/espt/lowlevel_init.S                         |  15 +-
 board/esteem192e/Makefile                          |  18 +-
 board/esteem192e/esteem192e.c                      |  20 +-
 board/esteem192e/flash.c                           |  18 +-
 board/esteem192e/u-boot.lds                        |  18 +-
 board/etin/debris/Makefile                         |  18 +-
 board/etin/debris/debris.c                         |  18 +-
 board/etin/debris/flash.c                          |  18 +-
 board/etin/debris/phantom.c                        |   5 +-
 board/etin/debris/speed.h                          |  18 +-
 board/etin/kvme080/Makefile                        |  18 +-
 board/etin/kvme080/kvme080.c                       |  18 +-
 board/etin/kvme080/multiverse.c                    |   5 +-
 board/etin/kvme080/multiverse.h                    |   5 +-
 board/eukrea/cpu9260/Makefile                      |  18 +-
 board/eukrea/cpu9260/cpu9260.c                     |  18 +-
 board/eukrea/cpu9260/led.c                         |  18 +-
 board/eukrea/cpuat91/Makefile                      |  18 +-
 board/eukrea/cpuat91/cpuat91.c                     |  18 +-
 board/evb64260/Makefile                            |  18 +-
 board/evb64260/eth.c                               |   5 +-
 board/evb64260/eth.h                               |  18 +-
 board/evb64260/evb64260.c                          |  18 +-
 board/evb64260/flash.c                             |  18 +-
 board/evb64260/intel_flash.c                       |  19 +-
 board/evb64260/mpsc.c                              |  18 +-
 board/evb64260/mpsc.h                              |  18 +-
 board/evb64260/sdram_init.c                        |  18 +-
 board/evb64260/serial.c                            |  18 +-
 board/evb64260/u-boot.lds                          |  18 +-
 board/exmeritus/hww1u1a/Makefile                   |  18 +-
 board/exmeritus/hww1u1a/gpios.h                    |  15 +-
 board/exmeritus/hww1u1a/hww1u1a.c                  |  18 +-
 board/exmeritus/hww1u1a/law.c                      |  18 +-
 board/exmeritus/hww1u1a/tlb.c                      |  18 +-
 board/fads/Makefile                                |  18 +-
 board/fads/README                                  |  18 +-
 board/fads/fads.c                                  |  18 +-
 board/fads/fads.h                                  |  18 +-
 board/fads/flash.c                                 |  18 +-
 board/fads/u-boot.lds                              |  18 +-
 board/faraday/a320evb/Makefile                     |  18 +-
 board/faraday/a320evb/a320evb.c                    |  14 +-
 board/faraday/a320evb/lowlevel_init.S              |  14 +-
 board/flagadm/Makefile                             |  18 +-
 board/flagadm/flagadm.c                            |  18 +-
 board/flagadm/flash.c                              |  18 +-
 board/flagadm/u-boot.lds                           |  18 +-
 board/flagadm/u-boot.lds.debug                     |  18 +-
 board/freescale/b4860qds/Makefile                  |  18 +-
 board/freescale/b4860qds/b4860qds.c                |  18 +-
 board/freescale/b4860qds/b4860qds.h                |  15 +-
 board/freescale/b4860qds/b4860qds_crossbar_con.h   |  15 +-
 board/freescale/b4860qds/b4860qds_qixis.h          |  15 +-
 board/freescale/b4860qds/eth_b4860qds.c            |  18 +-
 board/freescale/b4860qds/law.c                     |  18 +-
 board/freescale/b4860qds/pci.c                     |  18 +-
 board/freescale/b4860qds/tlb.c                     |  18 +-
 board/freescale/bsc9131rdb/Makefile                |  18 +-
 board/freescale/bsc9131rdb/bsc9131rdb.c            |  18 +-
 board/freescale/bsc9131rdb/ddr.c                   |  18 +-
 board/freescale/bsc9131rdb/law.c                   |  18 +-
 board/freescale/bsc9131rdb/spl_minimal.c           |  17 +-
 board/freescale/bsc9131rdb/tlb.c                   |  18 +-
 board/freescale/bsc9132qds/Makefile                |  18 +-
 board/freescale/bsc9132qds/bsc9132qds.c            |  18 +-
 board/freescale/bsc9132qds/ddr.c                   |  18 +-
 board/freescale/bsc9132qds/law.c                   |  18 +-
 board/freescale/bsc9132qds/spl_minimal.c           |  17 +-
 board/freescale/bsc9132qds/tlb.c                   |  18 +-
 board/freescale/common/Makefile                    |  18 +-
 board/freescale/common/cadmus.c                    |  18 +-
 board/freescale/common/cadmus.h                    |  18 +-
 board/freescale/common/cds_pci_ft.c                |  18 +-
 board/freescale/common/cds_via.c                   |  18 +-
 board/freescale/common/eeprom.h                    |  18 +-
 board/freescale/common/fman.c                      |  18 +-
 board/freescale/common/fman.h                      |  15 +-
 board/freescale/common/ics307_clk.c                |  18 +-
 board/freescale/common/ics307_clk.h                |  18 +-
 board/freescale/common/ngpixis.c                   |   5 +-
 board/freescale/common/ngpixis.h                   |   5 +-
 board/freescale/common/p_corenet/Makefile          |  18 +-
 board/freescale/common/p_corenet/law.c             |  18 +-
 board/freescale/common/p_corenet/pci.c             |  18 +-
 board/freescale/common/p_corenet/tlb.c             |  18 +-
 board/freescale/common/pixis.c                     |  18 +-
 board/freescale/common/pixis.h                     |  18 +-
 board/freescale/common/qixis.c                     |   6 +-
 board/freescale/common/qixis.h                     |   5 +-
 board/freescale/common/sdhc_boot.c                 |  18 +-
 board/freescale/common/sys_eeprom.c                |  18 +-
 board/freescale/common/vsc3316_3308.c              |  18 +-
 board/freescale/common/vsc3316_3308.h              |  15 +-
 board/freescale/corenet_ds/Makefile                |  18 +-
 board/freescale/corenet_ds/corenet_ds.c            |  18 +-
 board/freescale/corenet_ds/corenet_ds.h            |  15 +-
 board/freescale/corenet_ds/eth_hydra.c             |  18 +-
 board/freescale/corenet_ds/eth_p4080.c             |  18 +-
 board/freescale/corenet_ds/eth_superhydra.c        |  18 +-
 board/freescale/corenet_ds/pbi.cfg                 |  18 +-
 board/freescale/imx/ddr/mx6q_4x_mt41j128.cfg       |  18 +-
 board/freescale/m5208evbe/Makefile                 |  18 +-
 board/freescale/m5208evbe/config.mk                |  18 +-
 board/freescale/m5208evbe/m5208evbe.c              |  18 +-
 board/freescale/m5208evbe/u-boot.lds               |  18 +-
 board/freescale/m52277evb/Makefile                 |  18 +-
 board/freescale/m52277evb/config.mk                |  18 +-
 board/freescale/m52277evb/m52277evb.c              |  18 +-
 board/freescale/m52277evb/u-boot.lds               |  18 +-
 board/freescale/m5235evb/Makefile                  |  18 +-
 board/freescale/m5235evb/config.mk                 |  18 +-
 board/freescale/m5235evb/m5235evb.c                |  18 +-
 board/freescale/m5235evb/u-boot.lds                |  18 +-
 board/freescale/m5249evb/Makefile                  |  18 +-
 board/freescale/m5249evb/config.mk                 |  18 +-
 board/freescale/m5249evb/m5249evb.c                |  18 +-
 board/freescale/m5249evb/u-boot.lds                |  18 +-
 board/freescale/m5253demo/Makefile                 |  18 +-
 board/freescale/m5253demo/config.mk                |  18 +-
 board/freescale/m5253demo/flash.c                  |  18 +-
 board/freescale/m5253demo/m5253demo.c              |  18 +-
 board/freescale/m5253demo/u-boot.lds               |  18 +-
 board/freescale/m5253evbe/Makefile                 |  18 +-
 board/freescale/m5253evbe/config.mk                |  18 +-
 board/freescale/m5253evbe/m5253evbe.c              |  18 +-
 board/freescale/m5253evbe/u-boot.lds               |  18 +-
 board/freescale/m5271evb/Makefile                  |  18 +-
 board/freescale/m5271evb/config.mk                 |  18 +-
 board/freescale/m5271evb/m5271evb.c                |  18 +-
 board/freescale/m5271evb/u-boot.lds                |  18 +-
 board/freescale/m5272c3/Makefile                   |  18 +-
 board/freescale/m5272c3/config.mk                  |  18 +-
 board/freescale/m5272c3/m5272c3.c                  |  18 +-
 board/freescale/m5272c3/u-boot.lds                 |  18 +-
 board/freescale/m5275evb/Makefile                  |  18 +-
 board/freescale/m5275evb/config.mk                 |  18 +-
 board/freescale/m5275evb/m5275evb.c                |  18 +-
 board/freescale/m5275evb/u-boot.lds                |  18 +-
 board/freescale/m5282evb/Makefile                  |  18 +-
 board/freescale/m5282evb/config.mk                 |  18 +-
 board/freescale/m5282evb/m5282evb.c                |  18 +-
 board/freescale/m5282evb/u-boot.lds                |  18 +-
 board/freescale/m53017evb/Makefile                 |  18 +-
 board/freescale/m53017evb/config.mk                |  18 +-
 board/freescale/m53017evb/m53017evb.c              |  18 +-
 board/freescale/m53017evb/u-boot.lds               |  18 +-
 board/freescale/m5329evb/Makefile                  |  18 +-
 board/freescale/m5329evb/config.mk                 |  18 +-
 board/freescale/m5329evb/m5329evb.c                |  18 +-
 board/freescale/m5329evb/nand.c                    |  18 +-
 board/freescale/m5329evb/u-boot.lds                |  18 +-
 board/freescale/m5373evb/Makefile                  |  18 +-
 board/freescale/m5373evb/config.mk                 |  18 +-
 board/freescale/m5373evb/m5373evb.c                |  18 +-
 board/freescale/m5373evb/nand.c                    |  18 +-
 board/freescale/m5373evb/u-boot.lds                |  18 +-
 board/freescale/m54418twr/Makefile                 |  18 +-
 board/freescale/m54418twr/config.mk                |  18 +-
 board/freescale/m54418twr/m54418twr.c              |  18 +-
 board/freescale/m54418twr/u-boot.lds               |  18 +-
 board/freescale/m54451evb/Makefile                 |  18 +-
 board/freescale/m54451evb/config.mk                |  18 +-
 board/freescale/m54451evb/m54451evb.c              |  18 +-
 board/freescale/m54451evb/u-boot.lds               |  18 +-
 board/freescale/m54455evb/Makefile                 |  18 +-
 board/freescale/m54455evb/config.mk                |  18 +-
 board/freescale/m54455evb/m54455evb.c              |  18 +-
 board/freescale/m54455evb/u-boot.lds               |  18 +-
 board/freescale/m547xevb/Makefile                  |  18 +-
 board/freescale/m547xevb/config.mk                 |  18 +-
 board/freescale/m547xevb/m547xevb.c                |  18 +-
 board/freescale/m547xevb/u-boot.lds                |  18 +-
 board/freescale/m548xevb/Makefile                  |  18 +-
 board/freescale/m548xevb/config.mk                 |  18 +-
 board/freescale/m548xevb/m548xevb.c                |  18 +-
 board/freescale/m548xevb/u-boot.lds                |  18 +-
 board/freescale/mpc5121ads/Makefile                |  18 +-
 board/freescale/mpc5121ads/mpc5121ads.c            |  19 +-
 board/freescale/mpc7448hpc2/Makefile               |  18 +-
 board/freescale/mpc7448hpc2/asm_init.S             |  15 +-
 board/freescale/mpc7448hpc2/config.mk              |  18 +-
 board/freescale/mpc7448hpc2/mpc7448hpc2.c          |  18 +-
 board/freescale/mpc7448hpc2/tsi108_init.c          |  15 +-
 board/freescale/mpc8260ads/Makefile                |  18 +-
 board/freescale/mpc8260ads/flash.c                 |  18 +-
 board/freescale/mpc8260ads/mpc8260ads.c            |  18 +-
 board/freescale/mpc8266ads/Makefile                |  18 +-
 board/freescale/mpc8266ads/flash.c                 |  18 +-
 board/freescale/mpc8266ads/mpc8266ads.c            |  18 +-
 board/freescale/mpc8308rdb/Makefile                |  18 +-
 board/freescale/mpc8308rdb/mpc8308rdb.c            |  18 +-
 board/freescale/mpc8308rdb/sdram.c                 |  18 +-
 board/freescale/mpc8313erdb/Makefile               |  18 +-
 board/freescale/mpc8313erdb/mpc8313erdb.c          |  18 +-
 board/freescale/mpc8313erdb/sdram.c                |  18 +-
 board/freescale/mpc8315erdb/Makefile               |  18 +-
 board/freescale/mpc8315erdb/mpc8315erdb.c          |  18 +-
 board/freescale/mpc8315erdb/sdram.c                |  18 +-
 board/freescale/mpc8323erdb/Makefile               |  18 +-
 board/freescale/mpc832xemds/Makefile               |  18 +-
 board/freescale/mpc832xemds/mpc832xemds.c          |   8 +-
 board/freescale/mpc832xemds/pci.c                  |   8 +-
 board/freescale/mpc8349emds/Makefile               |  18 +-
 board/freescale/mpc8349emds/ddr.c                  |  18 +-
 board/freescale/mpc8349emds/mpc8349emds.c          |  19 +-
 board/freescale/mpc8349emds/pci.c                  |  19 +-
 board/freescale/mpc8349itx/Makefile                |  18 +-
 board/freescale/mpc8349itx/mpc8349itx.c            |  18 +-
 board/freescale/mpc8349itx/pci.c                   |  18 +-
 board/freescale/mpc8360emds/Makefile               |  18 +-
 board/freescale/mpc8360emds/mpc8360emds.c          |   8 +-
 board/freescale/mpc8360emds/pci.c                  |   8 +-
 board/freescale/mpc8360erdk/Makefile               |  18 +-
 board/freescale/mpc8360erdk/mpc8360erdk.c          |   5 +-
 board/freescale/mpc8360erdk/nand.c                 |   5 +-
 board/freescale/mpc837xemds/Makefile               |  18 +-
 board/freescale/mpc837xemds/mpc837xemds.c          |   7 +-
 board/freescale/mpc837xemds/pci.c                  |   8 +-
 board/freescale/mpc837xerdb/Makefile               |  18 +-
 board/freescale/mpc837xerdb/mpc837xerdb.c          |   8 +-
 board/freescale/mpc837xerdb/pci.c                  |   8 +-
 board/freescale/mpc8536ds/Makefile                 |  18 +-
 board/freescale/mpc8536ds/law.c                    |  18 +-
 board/freescale/mpc8536ds/mpc8536ds.c              |  18 +-
 board/freescale/mpc8536ds/tlb.c                    |  18 +-
 board/freescale/mpc8540ads/Makefile                |  18 +-
 board/freescale/mpc8540ads/law.c                   |  18 +-
 board/freescale/mpc8540ads/mpc8540ads.c            |  18 +-
 board/freescale/mpc8540ads/tlb.c                   |  18 +-
 board/freescale/mpc8541cds/Makefile                |  18 +-
 board/freescale/mpc8541cds/law.c                   |  18 +-
 board/freescale/mpc8541cds/mpc8541cds.c            |  18 +-
 board/freescale/mpc8541cds/tlb.c                   |  18 +-
 board/freescale/mpc8544ds/Makefile                 |  18 +-
 board/freescale/mpc8544ds/law.c                    |  18 +-
 board/freescale/mpc8544ds/mpc8544ds.c              |  18 +-
 board/freescale/mpc8544ds/tlb.c                    |  18 +-
 board/freescale/mpc8548cds/Makefile                |  18 +-
 board/freescale/mpc8548cds/law.c                   |  18 +-
 board/freescale/mpc8548cds/mpc8548cds.c            |  18 +-
 board/freescale/mpc8548cds/tlb.c                   |  18 +-
 board/freescale/mpc8555cds/Makefile                |  18 +-
 board/freescale/mpc8555cds/law.c                   |  18 +-
 board/freescale/mpc8555cds/mpc8555cds.c            |  18 +-
 board/freescale/mpc8555cds/tlb.c                   |  18 +-
 board/freescale/mpc8560ads/Makefile                |  18 +-
 board/freescale/mpc8560ads/law.c                   |  18 +-
 board/freescale/mpc8560ads/mpc8560ads.c            |  18 +-
 board/freescale/mpc8560ads/tlb.c                   |  18 +-
 board/freescale/mpc8568mds/Makefile                |  18 +-
 board/freescale/mpc8568mds/bcsr.c                  |  18 +-
 board/freescale/mpc8568mds/bcsr.h                  |  18 +-
 board/freescale/mpc8568mds/law.c                   |  18 +-
 board/freescale/mpc8568mds/mpc8568mds.c            |  18 +-
 board/freescale/mpc8568mds/tlb.c                   |  18 +-
 board/freescale/mpc8569mds/Makefile                |  18 +-
 board/freescale/mpc8569mds/bcsr.c                  |  18 +-
 board/freescale/mpc8569mds/bcsr.h                  |  18 +-
 board/freescale/mpc8569mds/law.c                   |  18 +-
 board/freescale/mpc8569mds/mpc8569mds.c            |  18 +-
 board/freescale/mpc8569mds/tlb.c                   |  18 +-
 board/freescale/mpc8572ds/Makefile                 |  18 +-
 board/freescale/mpc8572ds/law.c                    |  18 +-
 board/freescale/mpc8572ds/mpc8572ds.c              |  18 +-
 board/freescale/mpc8572ds/tlb.c                    |  18 +-
 board/freescale/mpc8610hpcd/Makefile               |  18 +-
 board/freescale/mpc8610hpcd/law.c                  |  18 +-
 board/freescale/mpc8610hpcd/mpc8610hpcd.c          |  18 +-
 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c      |  18 +-
 board/freescale/mpc8641hpcn/Makefile               |  18 +-
 board/freescale/mpc8641hpcn/law.c                  |  18 +-
 board/freescale/mpc8641hpcn/mpc8641hpcn.c          |  18 +-
 board/freescale/mx23evk/Makefile                   |  18 +-
 board/freescale/mx23evk/mx23evk.c                  |  13 +-
 board/freescale/mx23evk/spl_boot.c                 |  13 +-
 board/freescale/mx25pdk/Makefile                   |  15 +-
 board/freescale/mx25pdk/imximage.cfg               |  13 +-
 board/freescale/mx25pdk/lowlevel_init.S            |  13 +-
 board/freescale/mx25pdk/mx25pdk.c                  |  13 +-
 board/freescale/mx28evk/Makefile                   |  18 +-
 board/freescale/mx28evk/iomux.c                    |  13 +-
 board/freescale/mx28evk/mx28evk.c                  |  13 +-
 board/freescale/mx31ads/Makefile                   |  15 +-
 board/freescale/mx31ads/lowlevel_init.S            |  15 +-
 board/freescale/mx31ads/mx31ads.c                  |  18 +-
 board/freescale/mx31ads/u-boot.lds                 |  18 +-
 board/freescale/mx31pdk/Makefile                   |  18 +-
 board/freescale/mx31pdk/lowlevel_init.S            |  18 +-
 board/freescale/mx31pdk/mx31pdk.c                  |  18 +-
 board/freescale/mx35pdk/Makefile                   |  15 +-
 board/freescale/mx35pdk/lowlevel_init.S            |  15 +-
 board/freescale/mx35pdk/mx35pdk.c                  |  18 +-
 board/freescale/mx35pdk/mx35pdk.h                  |  18 +-
 board/freescale/mx51evk/Makefile                   |  15 +-
 board/freescale/mx51evk/imximage.cfg               |  18 +-
 board/freescale/mx51evk/mx51evk.c                  |  18 +-
 board/freescale/mx51evk/mx51evk_video.c            |  18 +-
 board/freescale/mx53ard/Makefile                   |  15 +-
 board/freescale/mx53ard/imximage_dd3.cfg           |  18 +-
 board/freescale/mx53ard/mx53ard.c                  |  18 +-
 board/freescale/mx53evk/Makefile                   |  15 +-
 board/freescale/mx53evk/imximage.cfg               |  18 +-
 board/freescale/mx53evk/mx53evk.c                  |  18 +-
 board/freescale/mx53loco/Makefile                  |  15 +-
 board/freescale/mx53loco/imximage.cfg              |  18 +-
 board/freescale/mx53loco/mx53loco.c                |  18 +-
 board/freescale/mx53loco/mx53loco_video.c          |  18 +-
 board/freescale/mx53smd/Makefile                   |  15 +-
 board/freescale/mx53smd/imximage.cfg               |  18 +-
 board/freescale/mx53smd/mx53smd.c                  |  18 +-
 board/freescale/mx6qarm2/Makefile                  |  15 +-
 board/freescale/mx6qarm2/imximage.cfg              |  18 +-
 board/freescale/mx6qarm2/mx6qarm2.c                |  18 +-
 board/freescale/mx6qsabreauto/Makefile             |  15 +-
 board/freescale/mx6qsabreauto/imximage.cfg         |  18 +-
 board/freescale/mx6qsabreauto/mx6qsabreauto.c      |  13 +-
 board/freescale/mx6qsabrelite/Makefile             |  15 +-
 board/freescale/mx6qsabrelite/mx6qsabrelite.c      |  18 +-
 board/freescale/mx6qsabresd/Makefile               |  15 +-
 board/freescale/mx6qsabresd/mx6qsabresd.c          |  13 +-
 board/freescale/mx6slevk/Makefile                  |   5 +-
 board/freescale/mx6slevk/imximage.cfg              |   5 +-
 board/freescale/mx6slevk/mx6slevk.c                |   5 +-
 board/freescale/p1010rdb/Makefile                  |  18 +-
 board/freescale/p1010rdb/ddr.c                     |  18 +-
 board/freescale/p1010rdb/law.c                     |  18 +-
 board/freescale/p1010rdb/p1010rdb.c                |  18 +-
 board/freescale/p1010rdb/spl_minimal.c             |  17 +-
 board/freescale/p1010rdb/tlb.c                     |  18 +-
 board/freescale/p1022ds/Makefile                   |   5 +-
 board/freescale/p1022ds/ddr.c                      |   5 +-
 board/freescale/p1022ds/diu.c                      |   5 +-
 board/freescale/p1022ds/law.c                      |   5 +-
 board/freescale/p1022ds/p1022ds.c                  |   5 +-
 board/freescale/p1022ds/spl_minimal.c              |  17 +-
 board/freescale/p1022ds/tlb.c                      |   5 +-
 board/freescale/p1023rdb/Makefile                  |   5 +-
 board/freescale/p1023rdb/ddr.c                     |  18 +-
 board/freescale/p1023rdb/law.c                     |  18 +-
 board/freescale/p1023rdb/p1023rdb.c                |  18 +-
 board/freescale/p1023rdb/tlb.c                     |  18 +-
 board/freescale/p1023rds/Makefile                  |   5 +-
 board/freescale/p1023rds/bcsr.h                    |   6 +-
 board/freescale/p1023rds/law.c                     |  18 +-
 board/freescale/p1023rds/p1023rds.c                |  18 +-
 board/freescale/p1023rds/tlb.c                     |  18 +-
 board/freescale/p1_p2_rdb/Makefile                 |  18 +-
 board/freescale/p1_p2_rdb/ddr.c                    |  18 +-
 board/freescale/p1_p2_rdb/law.c                    |  18 +-
 board/freescale/p1_p2_rdb/p1_p2_rdb.c              |  18 +-
 board/freescale/p1_p2_rdb/pci.c                    |  18 +-
 board/freescale/p1_p2_rdb/tlb.c                    |  18 +-
 board/freescale/p1_p2_rdb_pc/Makefile              |  18 +-
 board/freescale/p1_p2_rdb_pc/law.c                 |  18 +-
 board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c        |  18 +-
 board/freescale/p1_p2_rdb_pc/spl_minimal.c         |  17 +-
 board/freescale/p1_p2_rdb_pc/tlb.c                 |  18 +-
 board/freescale/p2020come/Makefile                 |  18 +-
 board/freescale/p2020come/ddr.c                    |  18 +-
 board/freescale/p2020come/law.c                    |  18 +-
 board/freescale/p2020come/p2020come.c              |  18 +-
 board/freescale/p2020come/tlb.c                    |  18 +-
 board/freescale/p2020ds/Makefile                   |  18 +-
 board/freescale/p2020ds/law.c                      |  18 +-
 board/freescale/p2020ds/p2020ds.c                  |  18 +-
 board/freescale/p2020ds/tlb.c                      |  18 +-
 board/freescale/p2041rdb/Makefile                  |  18 +-
 board/freescale/p2041rdb/cpld.c                    |   6 +-
 board/freescale/p2041rdb/cpld.h                    |   5 +-
 board/freescale/p2041rdb/eth.c                     |  18 +-
 board/freescale/p2041rdb/p2041rdb.c                |  18 +-
 board/freescale/t4qds/Makefile                     |  18 +-
 board/freescale/t4qds/eth.c                        |  18 +-
 board/freescale/t4qds/law.c                        |  18 +-
 board/freescale/t4qds/pci.c                        |  18 +-
 board/freescale/t4qds/t4240qds_qixis.h             |  15 +-
 board/freescale/t4qds/t4qds.c                      |  18 +-
 board/freescale/t4qds/t4qds.h                      |  15 +-
 board/freescale/t4qds/tlb.c                        |  18 +-
 board/freescale/titanium/Makefile                  |  10 +-
 board/freescale/titanium/imximage.cfg              |  13 +-
 board/freescale/titanium/titanium.c                |  13 +-
 board/freescale/vf610twr/Makefile                  |  15 +-
 board/freescale/vf610twr/imximage.cfg              |  18 +-
 board/freescale/vf610twr/vf610twr.c                |  15 +-
 board/friendlyarm/mini2440/Makefile                |  18 +-
 board/friendlyarm/mini2440/mini2440.c              |  18 +-
 board/funkwerk/vovpn-gw/Makefile                   |  18 +-
 board/funkwerk/vovpn-gw/flash.c                    |  15 +-
 board/funkwerk/vovpn-gw/m88e6060.c                 |  15 +-
 board/funkwerk/vovpn-gw/m88e6060.h                 |  15 +-
 board/funkwerk/vovpn-gw/vovpn-gw.c                 |  15 +-
 board/g2000/Makefile                               |  18 +-
 board/g2000/g2000.c                                |  18 +-
 board/g2000/strataflash.c                          |  18 +-
 board/gaisler/gr_cpci_ax2000/Makefile              |  18 +-
 board/gaisler/gr_cpci_ax2000/config.mk             |  18 +-
 board/gaisler/gr_cpci_ax2000/gr_cpci_ax2000.c      |  15 +-
 board/gaisler/gr_cpci_ax2000/u-boot.lds            |  22 +-
 board/gaisler/gr_ep2s60/Makefile                   |  18 +-
 board/gaisler/gr_ep2s60/config.mk                  |  18 +-
 board/gaisler/gr_ep2s60/gr_ep2s60.c                |  15 +-
 board/gaisler/gr_ep2s60/u-boot.lds                 |  22 +-
 board/gaisler/gr_xc3s_1500/Makefile                |  18 +-
 board/gaisler/gr_xc3s_1500/config.mk               |  18 +-
 board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c          |  15 +-
 board/gaisler/gr_xc3s_1500/u-boot.lds              |  22 +-
 board/gaisler/grsim/Makefile                       |  18 +-
 board/gaisler/grsim/config.mk                      |  18 +-
 board/gaisler/grsim/grsim.c                        |  22 +-
 board/gaisler/grsim/u-boot.lds                     |  22 +-
 board/gaisler/grsim_leon2/Makefile                 |  18 +-
 board/gaisler/grsim_leon2/config.mk                |  18 +-
 board/gaisler/grsim_leon2/grsim_leon2.c            |  22 +-
 board/gaisler/grsim_leon2/u-boot.lds               |  22 +-
 board/galaxy5200/Makefile                          |  18 +-
 board/galaxy5200/galaxy5200.c                      |  18 +-
 board/gdsys/405ep/405ep.c                          |  18 +-
 board/gdsys/405ep/Makefile                         |  18 +-
 board/gdsys/405ep/dlvision-10g.c                   |  18 +-
 board/gdsys/405ep/io.c                             |  18 +-
 board/gdsys/405ep/iocon.c                          |  18 +-
 board/gdsys/405ep/neo.c                            |  18 +-
 board/gdsys/405ex/Makefile                         |  18 +-
 board/gdsys/405ex/chip_config.c                    |  19 +-
 board/gdsys/405ex/io64.c                           |  18 +-
 board/gdsys/common/Makefile                        |  18 +-
 board/gdsys/common/miiphybb.c                      |  18 +-
 board/gdsys/common/osd.c                           |  18 +-
 board/gdsys/common/osd.h                           |  18 +-
 board/gdsys/dlvision/Makefile                      |  18 +-
 board/gdsys/dlvision/dlvision.c                    |  18 +-
 board/gdsys/gdppc440etx/Makefile                   |  18 +-
 board/gdsys/gdppc440etx/config.mk                  |  18 +-
 board/gdsys/gdppc440etx/gdppc440etx.c              |  18 +-
 board/gdsys/gdppc440etx/init.S                     |  19 +-
 board/gdsys/intip/Makefile                         |  18 +-
 board/gdsys/intip/chip_config.c                    |  19 +-
 board/gdsys/intip/config.mk                        |  18 +-
 board/gdsys/intip/init.S                           |  18 +-
 board/gdsys/intip/intip.c                          |  15 +-
 board/gen860t/Makefile                             |  18 +-
 board/gen860t/README                               |  15 +-
 board/gen860t/beeper.c                             |  18 +-
 board/gen860t/beeper.h                             |  18 +-
 board/gen860t/flash.c                              |  18 +-
 board/gen860t/fpga.c                               |  19 +-
 board/gen860t/fpga.h                               |  19 +-
 board/gen860t/gen860t.c                            |  18 +-
 board/gen860t/ioport.c                             |  18 +-
 board/gen860t/ioport.h                             |  18 +-
 board/gen860t/u-boot-flashenv.lds                  |  18 +-
 board/gen860t/u-boot.lds                           |  18 +-
 board/genesi/mx51_efikamx/Makefile                 |  15 +-
 board/genesi/mx51_efikamx/efikamx-usb.c            |  18 +-
 board/genesi/mx51_efikamx/efikamx.c                |  18 +-
 board/genesi/mx51_efikamx/imximage_mx.cfg          |  18 +-
 board/genesi/mx51_efikamx/imximage_sb.cfg          |  23 +-
 board/genietv/Makefile                             |  18 +-
 board/genietv/flash.c                              |  18 +-
 board/genietv/u-boot.lds                           |  18 +-
 board/genietv/u-boot.lds.debug                     |  18 +-
 board/gw8260/Makefile                              |  18 +-
 board/gw8260/flash.c                               |  19 +-
 board/gw8260/gw8260.c                              |  18 +-
 board/h2200/Makefile                               |  15 +-
 board/h2200/h2200-header.S                         |  14 +-
 board/h2200/h2200.c                                |  14 +-
 board/hale/tt01/Makefile                           |  18 +-
 board/hale/tt01/lowlevel_init.S                    |  18 +-
 board/hale/tt01/tt01.c                             |  18 +-
 board/hermes/Makefile                              |  18 +-
 board/hermes/flash.c                               |  18 +-
 board/hermes/hermes.c                              |  18 +-
 board/hermes/u-boot.lds                            |  18 +-
 board/hermes/u-boot.lds.debug                      |  18 +-
 board/hidden_dragon/Makefile                       |  18 +-
 board/hidden_dragon/early_init.S                   |  18 +-
 board/hidden_dragon/flash.c                        |  18 +-
 board/hidden_dragon/hidden_dragon.c                |  18 +-
 board/hidden_dragon/speed.h                        |  18 +-
 board/highbank/Makefile                            |  18 +-
 board/highbank/highbank.c                          |  13 +-
 board/htkw/mcx/Makefile                            |  14 +-
 board/htkw/mcx/mcx.c                               |  14 +-
 board/htkw/mcx/mcx.h                               |  14 +-
 board/hymod/Makefile                               |  18 +-
 board/hymod/bsp.c                                  |  18 +-
 board/hymod/config.mk                              |  18 +-
 board/hymod/eeprom.c                               |  18 +-
 board/hymod/env.c                                  |  18 +-
 board/hymod/fetch.c                                |  18 +-
 board/hymod/flash.c                                |  18 +-
 board/hymod/flash.h                                |  18 +-
 board/hymod/global_env                             |  18 +-
 board/hymod/hymod.c                                |  18 +-
 board/hymod/hymod.h                                |  18 +-
 board/hymod/input.c                                |  18 +-
 board/hymod/u-boot.lds                             |  18 +-
 board/hymod/u-boot.lds.debug                       |  18 +-
 board/ibf-dsp561/Makefile                          |  18 +-
 board/ibf-dsp561/config.mk                         |  18 +-
 board/icecube/Makefile                             |  18 +-
 board/icecube/flash.c                              |  18 +-
 board/icecube/icecube.c                            |  18 +-
 board/icecube/mt46v16m16-75.h                      |  18 +-
 board/icecube/mt46v32m16.h                         |  18 +-
 board/icecube/mt48lc16m16a2-75.h                   |  18 +-
 board/icpdas/lp8x4x/Makefile                       |  15 +-
 board/icpdas/lp8x4x/lp8x4x.c                       |  15 +-
 board/icu862/Makefile                              |  18 +-
 board/icu862/flash.c                               |  18 +-
 board/icu862/icu862.c                              |  18 +-
 board/icu862/u-boot.lds                            |  18 +-
 board/icu862/u-boot.lds.debug                      |  18 +-
 board/idmr/Makefile                                |  18 +-
 board/idmr/config.mk                               |  18 +-
 board/idmr/flash.c                                 |  18 +-
 board/idmr/idmr.c                                  |  18 +-
 board/idmr/u-boot.lds                              |  18 +-
 board/ids8247/Makefile                             |  18 +-
 board/ids8247/ids8247.c                            |  18 +-
 board/ifm/ac14xx/Makefile                          |   8 +-
 board/ifm/ac14xx/ac14xx.c                          |   8 +-
 board/ifm/o2dnt2/Makefile                          |   8 +-
 board/ifm/o2dnt2/o2dnt2.c                          |  18 +-
 board/imx31_phycore/Makefile                       |  18 +-
 board/imx31_phycore/imx31_phycore.c                |  18 +-
 board/imx31_phycore/lowlevel_init.S                |  18 +-
 board/in-circuit/grasshopper/Makefile              |  18 +-
 board/in-circuit/grasshopper/grasshopper.c         |  18 +-
 board/incaip/Makefile                              |  18 +-
 board/incaip/config.mk                             |  18 +-
 board/incaip/flash.c                               |  18 +-
 board/incaip/incaip.c                              |  18 +-
 board/incaip/lowlevel_init.S                       |  18 +-
 board/inka4x0/Makefile                             |  18 +-
 board/inka4x0/hyb25d512160bf-5.h                   |  18 +-
 board/inka4x0/inka4x0.c                            |  18 +-
 board/inka4x0/inkadiag.c                           |  18 +-
 board/inka4x0/k4h511638c.h                         |  18 +-
 board/inka4x0/mt46v16m16-75.h                      |  18 +-
 board/inka4x0/mt46v32m16-75.h                      |  18 +-
 board/inka4x0/mt48lc16m16a2-75.h                   |  18 +-
 board/intercontrol/digsy_mtc/cmd_disp.c            |  18 +-
 board/intercontrol/digsy_mtc/cmd_mtc.c             |  18 +-
 board/intercontrol/digsy_mtc/cmd_mtc.h             |  18 +-
 board/intercontrol/digsy_mtc/digsy_mtc.c           |  18 +-
 board/intercontrol/digsy_mtc/eeprom.h              |  16 +-
 board/intercontrol/digsy_mtc/is42s16800a-7t.h      |  18 +-
 board/intercontrol/digsy_mtc/is45s16800a2.h        |  18 +-
 board/iomega/iconnect/Makefile                     |  16 +-
 board/iomega/iconnect/iconnect.c                   |  16 +-
 board/iomega/iconnect/iconnect.h                   |  16 +-
 board/iomega/iconnect/kwbimage.cfg                 |  16 +-
 board/ip04/Makefile                                |  18 +-
 board/ip04/config.mk                               |  18 +-
 board/ip860/Makefile                               |  18 +-
 board/ip860/flash.c                                |  18 +-
 board/ip860/ip860.c                                |  18 +-
 board/ip860/u-boot.lds                             |  18 +-
 board/ip860/u-boot.lds.debug                       |  18 +-
 board/ipek01/Makefile                              |  18 +-
 board/ipek01/ipek01.c                              |  18 +-
 board/iphase4539/Makefile                          |  18 +-
 board/iphase4539/flash.c                           |  18 +-
 board/iphase4539/iphase4539.c                      |  18 +-
 board/isee/igep0033/Makefile                       |  10 +-
 board/isee/igep0033/board.c                        |  10 +-
 board/isee/igep0033/board.h                        |  10 +-
 board/isee/igep00x0/Makefile                       |  18 +-
 board/isee/igep00x0/igep00x0.c                     |  18 +-
 board/isee/igep00x0/igep00x0.h                     |  18 +-
 board/ispan/Makefile                               |  18 +-
 board/ispan/ispan.c                                |  18 +-
 board/ivm/Makefile                                 |  18 +-
 board/ivm/flash.c                                  |  18 +-
 board/ivm/ivm.c                                    |  18 +-
 board/ivm/u-boot.lds                               |  18 +-
 board/ivm/u-boot.lds.debug                         |  18 +-
 board/jornada/Makefile                             |  18 +-
 board/jornada/jornada.c                            |  18 +-
 board/jornada/setup.S                              |  18 +-
 board/jse/Makefile                                 |  15 +-
 board/jse/flash.c                                  |  18 +-
 board/jse/host_bridge.c                            |  15 +-
 board/jse/jse.c                                    |  15 +-
 board/jse/jse_priv.h                               |  15 +-
 board/jse/sdram.c                                  |  15 +-
 board/jupiter/Makefile                             |  18 +-
 board/jupiter/jupiter.c                            |  18 +-
 board/karo/tk71/Makefile                           |  18 +-
 board/karo/tk71/kwbimage.cfg                       |  18 +-
 board/karo/tk71/tk71.c                             |  18 +-
 board/karo/tx25/Makefile                           |  18 +-
 board/karo/tx25/lowlevel_init.S                    |  15 +-
 board/karo/tx25/tx25.c                             |  16 +-
 board/keymile/common/common.c                      |  18 +-
 board/keymile/common/common.h                      |   5 +-
 board/keymile/common/ivm.c                         |  18 +-
 board/keymile/km82xx/Makefile                      |  18 +-
 board/keymile/km82xx/km82xx.c                      |  18 +-
 board/keymile/km83xx/Makefile                      |  18 +-
 board/keymile/km83xx/km83xx.c                      |   5 +-
 board/keymile/km83xx/km83xx_i2c.c                  |  18 +-
 board/keymile/km_arm/Makefile                      |  18 +-
 board/keymile/km_arm/fpga_config.c                 |  18 +-
 board/keymile/km_arm/km_arm.c                      |  18 +-
 board/keymile/km_arm/kwbimage-memphis.cfg          |  18 +-
 board/keymile/km_arm/kwbimage.cfg                  |  18 +-
 board/keymile/km_arm/kwbimage_128M16_1.cfg         |  18 +-
 board/keymile/km_arm/kwbimage_256M8_1.cfg          |  18 +-
 board/kmc/kzm9g/Makefile                           |  18 +-
 board/kmc/kzm9g/kzm9g.c                            |  18 +-
 board/korat/Makefile                               |  18 +-
 board/korat/config.mk                              |  18 +-
 board/korat/init.S                                 |  18 +-
 board/korat/korat.c                                |  15 +-
 board/korat/u-boot-F7FC.lds                        |  18 +-
 board/kup/Makefile                                 |  18 +-
 board/kup/common/flash.c                           |  18 +-
 board/kup/common/kup.c                             |  18 +-
 board/kup/common/kup.h                             |  18 +-
 board/kup/common/load_sernum_ethaddr.c             |  18 +-
 board/kup/kup4k/Makefile                           |  18 +-
 board/kup/kup4k/kup4k.c                            |  18 +-
 board/kup/kup4k/u-boot.lds                         |  18 +-
 board/kup/kup4k/u-boot.lds.debug                   |  18 +-
 board/kup/kup4x/Makefile                           |  18 +-
 board/kup/kup4x/kup4x.c                            |  18 +-
 board/kup/kup4x/u-boot.lds                         |  18 +-
 board/kup/kup4x/u-boot.lds.debug                   |  18 +-
 board/linkstation/Makefile                         |  18 +-
 board/linkstation/avr.c                            |  15 +-
 board/linkstation/ide.c                            |  19 +-
 board/linkstation/linkstation.c                    |  15 +-
 board/logicpd/am3517evm/Makefile                   |  14 +-
 board/logicpd/am3517evm/am3517evm.c                |  14 +-
 board/logicpd/am3517evm/am3517evm.h                |  14 +-
 board/logicpd/imx27lite/Makefile                   |  18 +-
 board/logicpd/imx27lite/imx27lite.c                |  16 +-
 board/logicpd/imx27lite/lowlevel_init.S            |  15 +-
 board/logicpd/imx31_litekit/Makefile               |  18 +-
 board/logicpd/imx31_litekit/imx31_litekit.c        |  18 +-
 board/logicpd/imx31_litekit/lowlevel_init.S        |  18 +-
 board/logicpd/omap3som/Makefile                    |  18 +-
 board/logicpd/omap3som/omap3logic.c                |  18 +-
 board/logicpd/omap3som/omap3logic.h                |  18 +-
 board/logicpd/zoom1/Makefile                       |  18 +-
 board/logicpd/zoom1/config.mk                      |  18 +-
 board/logicpd/zoom1/zoom1.c                        |  18 +-
 board/logicpd/zoom1/zoom1.h                        |  18 +-
 board/logicpd/zoom2/Makefile                       |  18 +-
 board/logicpd/zoom2/config.mk                      |  18 +-
 board/logicpd/zoom2/debug_board.c                  |  16 +-
 board/logicpd/zoom2/led.c                          |  15 +-
 board/logicpd/zoom2/zoom2.c                        |  18 +-
 board/logicpd/zoom2/zoom2.h                        |  18 +-
 board/logicpd/zoom2/zoom2_serial.c                 |  16 +-
 board/logicpd/zoom2/zoom2_serial.h                 |  16 +-
 board/lubbock/Makefile                             |  18 +-
 board/lubbock/flash.c                              |  18 +-
 board/lubbock/lubbock.c                            |  18 +-
 board/lwmon/Makefile                               |  18 +-
 board/lwmon/flash.c                                |  18 +-
 board/lwmon/lwmon.c                                |  18 +-
 board/lwmon/u-boot.lds                             |  18 +-
 board/lwmon/u-boot.lds.debug                       |  18 +-
 board/lwmon5/Makefile                              |  18 +-
 board/lwmon5/config.mk                             |  19 +-
 board/lwmon5/init.S                                |  18 +-
 board/lwmon5/kbd.c                                 |  15 +-
 board/lwmon5/lwmon5.c                              |  15 +-
 board/lwmon5/sdram.c                               |  15 +-
 board/manroland/hmi1001/Makefile                   |  18 +-
 board/manroland/hmi1001/hmi1001.c                  |  18 +-
 board/manroland/mucmc52/Makefile                   |  18 +-
 board/manroland/mucmc52/mucmc52.c                  |  18 +-
 board/manroland/uc100/Makefile                     |  18 +-
 board/manroland/uc100/u-boot.lds                   |  18 +-
 board/manroland/uc100/uc100.c                      |  18 +-
 board/manroland/uc101/Makefile                     |  18 +-
 board/manroland/uc101/uc101.c                      |  18 +-
 board/matrix_vision/common/Makefile                |  18 +-
 board/matrix_vision/common/mv_common.c             |  18 +-
 board/matrix_vision/common/mv_common.h             |  18 +-
 board/matrix_vision/mergerbox/Makefile             |  18 +-
 board/matrix_vision/mergerbox/fpga.c               |  19 +-
 board/matrix_vision/mergerbox/fpga.h               |  19 +-
 board/matrix_vision/mergerbox/mergerbox.c          |   8 +-
 board/matrix_vision/mergerbox/mergerbox.h          |   8 +-
 board/matrix_vision/mergerbox/pci.c                |   8 +-
 board/matrix_vision/mergerbox/sm107.c              |   8 +-
 board/matrix_vision/mvbc_p/Makefile                |  18 +-
 board/matrix_vision/mvbc_p/fpga.c                  |  19 +-
 board/matrix_vision/mvbc_p/fpga.h                  |  19 +-
 board/matrix_vision/mvbc_p/mvbc_p.c                |  18 +-
 board/matrix_vision/mvblm7/Makefile                |  18 +-
 board/matrix_vision/mvblm7/fpga.c                  |  19 +-
 board/matrix_vision/mvblm7/fpga.h                  |  19 +-
 board/matrix_vision/mvblm7/mvblm7.c                |  18 +-
 board/matrix_vision/mvblm7/pci.c                   |  18 +-
 board/matrix_vision/mvblx/Makefile                 |  18 +-
 board/matrix_vision/mvblx/config.mk                |  18 +-
 board/matrix_vision/mvblx/fpga.c                   |  19 +-
 board/matrix_vision/mvblx/fpga.h                   |  19 +-
 board/matrix_vision/mvblx/mvblx.c                  |  18 +-
 board/matrix_vision/mvblx/mvblx.h                  |  18 +-
 board/matrix_vision/mvblx/sys_eeprom.c             |  18 +-
 board/matrix_vision/mvsmr/Makefile                 |  18 +-
 board/matrix_vision/mvsmr/fpga.c                   |  19 +-
 board/matrix_vision/mvsmr/fpga.h                   |  19 +-
 board/matrix_vision/mvsmr/mvsmr.c                  |  18 +-
 board/matrix_vision/mvsmr/u-boot.lds               |  18 +-
 board/mbx8xx/Makefile                              |  18 +-
 board/mbx8xx/csr.h                                 |  18 +-
 board/mbx8xx/flash.c                               |  18 +-
 board/mbx8xx/mbx8xx.c                              |  18 +-
 board/mbx8xx/u-boot.lds                            |  18 +-
 board/mbx8xx/u-boot.lds.debug                      |  18 +-
 board/mbx8xx/vpd.c                                 |  18 +-
 board/mcc200/Makefile                              |  18 +-
 board/mcc200/auto_update.c                         |  15 +-
 board/mcc200/lcd.c                                 |  15 +-
 board/mcc200/mcc200.c                              |  18 +-
 board/mcc200/mt46v16m16-75.h                       |  18 +-
 board/mcc200/mt48lc16m16a2-75.h                    |  18 +-
 board/mcc200/mt48lc16m32s2-75.h                    |  18 +-
 board/micronas/vct/Makefile                        |  18 +-
 board/micronas/vct/bcu.h                           |  15 +-
 board/micronas/vct/config.mk                       |  18 +-
 board/micronas/vct/dcgu.c                          |  15 +-
 board/micronas/vct/dcgu.h                          |  15 +-
 board/micronas/vct/ebi.c                           |  15 +-
 board/micronas/vct/ebi.h                           |  15 +-
 board/micronas/vct/ebi_nor_flash.c                 |  15 +-
 board/micronas/vct/ebi_onenand.c                   |  15 +-
 board/micronas/vct/ebi_smc911x.c                   |  15 +-
 board/micronas/vct/ehci.c                          |  15 +-
 board/micronas/vct/gpio.c                          |  15 +-
 board/micronas/vct/scc.c                           |  15 +-
 board/micronas/vct/scc.h                           |  15 +-
 board/micronas/vct/top.c                           |  15 +-
 board/micronas/vct/vct.c                           |  15 +-
 board/micronas/vct/vct.h                           |  15 +-
 board/micronas/vct/vcth/reg_dcgu.h                 |  15 +-
 board/micronas/vct/vcth/reg_ebi.h                  |  15 +-
 board/micronas/vct/vcth/reg_fwsram.h               |  15 +-
 board/micronas/vct/vcth/reg_gpio.h                 |  15 +-
 board/micronas/vct/vcth/reg_scc.h                  |  15 +-
 board/micronas/vct/vcth/reg_usbh.h                 |  15 +-
 board/micronas/vct/vcth/reg_wdt.h                  |  15 +-
 board/micronas/vct/vcth2/reg_ebi.h                 |  15 +-
 board/micronas/vct/vctv/reg_dcgu.h                 |  15 +-
 board/micronas/vct/vctv/reg_ebi.h                  |  15 +-
 board/micronas/vct/vctv/reg_gpio.h                 |  15 +-
 board/micronas/vct/vctv/reg_wdt.h                  |  15 +-
 board/mimc/mimc200/Makefile                        |  17 +-
 board/mimc/mimc200/mimc200.c                       |  18 +-
 board/miromico/hammerhead/Makefile                 |  17 +-
 board/miromico/hammerhead/hammerhead.c             |  18 +-
 board/mosaixtech/icon/Makefile                     |  18 +-
 board/mosaixtech/icon/chip_config.c                |  19 +-
 board/mosaixtech/icon/config.mk                    |  18 +-
 board/mosaixtech/icon/icon.c                       |  19 +-
 board/mosaixtech/icon/init.S                       |  18 +-
 board/motionpro/Makefile                           |  18 +-
 board/motionpro/motionpro.c                        |  18 +-
 board/mousse/Makefile                              |  18 +-
 board/mousse/flash.c                               |  18 +-
 board/mousse/m48t59y.c                             |  18 +-
 board/mousse/m48t59y.h                             |  18 +-
 board/mousse/mousse.c                              |  18 +-
 board/mousse/mousse.h                              |  18 +-
 board/mousse/pci.c                                 |  18 +-
 board/mousse/u-boot.lds                            |  18 +-
 board/mousse/u-boot.lds.ram                        |  18 +-
 board/mousse/u-boot.lds.rom                        |  18 +-
 board/mpc8308_p1m/Makefile                         |  18 +-
 board/mpc8308_p1m/mpc8308_p1m.c                    |  18 +-
 board/mpc8308_p1m/sdram.c                          |  18 +-
 board/mpl/common/common_util.c                     |  19 +-
 board/mpl/common/common_util.h                     |  19 +-
 board/mpl/common/isa.c                             |  19 +-
 board/mpl/common/isa.h                             |  18 +-
 board/mpl/common/kbd.c                             |  21 +-
 board/mpl/common/kbd.h                             |  19 +-
 board/mpl/common/pci_parts.h                       |  19 +-
 board/mpl/common/piix4_pci.h                       |  18 +-
 board/mpl/common/usb_uhci.c                        |  20 +-
 board/mpl/common/usb_uhci.h                        |  19 +-
 board/mpl/mip405/Makefile                          |  18 +-
 board/mpl/mip405/cmd_mip405.c                      |  18 +-
 board/mpl/mip405/mip405.c                          |  19 +-
 board/mpl/mip405/mip405.h                          |  19 +-
 board/mpl/pati/Makefile                            |  18 +-
 board/mpl/pati/cmd_pati.c                          |  18 +-
 board/mpl/pati/pati.c                              |  18 +-
 board/mpl/pati/pati.h                              |  18 +-
 board/mpl/pati/plx9056.h                           |  18 +-
 board/mpl/pip405/Makefile                          |  18 +-
 board/mpl/pip405/cmd_pip405.c                      |  18 +-
 board/mpl/pip405/pip405.c                          |  19 +-
 board/mpl/pip405/pip405.h                          |  19 +-
 board/mpl/pip405/u-boot.lds.debug                  |  18 +-
 board/mpl/vcma9/Makefile                           |  18 +-
 board/mpl/vcma9/cmd_vcma9.c                        |  19 +-
 board/mpl/vcma9/lowlevel_init.S                    |  18 +-
 board/mpl/vcma9/vcma9.c                            |  18 +-
 board/mpl/vcma9/vcma9.h                            |  19 +-
 board/mpr2/Makefile                                |  15 +-
 board/mpr2/lowlevel_init.S                         |  15 +-
 board/mpr2/mpr2.c                                  |  15 +-
 board/ms7720se/Makefile                            |  15 +-
 board/ms7720se/lowlevel_init.S                     |  15 +-
 board/ms7720se/ms7720se.c                          |  15 +-
 board/ms7722se/Makefile                            |  15 +-
 board/ms7722se/lowlevel_init.S                     |  15 +-
 board/ms7722se/ms7722se.c                          |  15 +-
 board/ms7750se/Makefile                            |  15 +-
 board/ms7750se/lowlevel_init.S                     |  18 +-
 board/ms7750se/ms7750se.c                          |  18 +-
 board/muas3001/Makefile                            |  18 +-
 board/muas3001/muas3001.c                          |  18 +-
 board/munices/Makefile                             |  18 +-
 board/munices/mt48lc16m16a2-75.h                   |  18 +-
 board/munices/munices.c                            |  18 +-
 board/musenki/Makefile                             |  18 +-
 board/musenki/flash.c                              |  18 +-
 board/musenki/musenki.c                            |  18 +-
 board/mvblue/Makefile                              |  18 +-
 board/mvblue/flash.c                               |  15 +-
 board/mvblue/u-boot.lds                            |  18 +-
 board/mx1ads/Makefile                              |  15 +-
 board/mx1ads/lowlevel_init.S                       |  15 +-
 board/mx1ads/mx1ads.c                              |  15 +-
 board/mx1ads/syncflash.c                           |  15 +-
 board/netphone/Makefile                            |  18 +-
 board/netphone/flash.c                             |  18 +-
 board/netphone/netphone.c                          |  18 +-
 board/netphone/phone_console.c                     |  18 +-
 board/netphone/u-boot.lds                          |  18 +-
 board/netphone/u-boot.lds.debug                    |  18 +-
 board/netta/Makefile                               |  18 +-
 board/netta/flash.c                                |  18 +-
 board/netta/netta.c                                |  18 +-
 board/netta/u-boot.lds                             |  18 +-
 board/netta/u-boot.lds.debug                       |  18 +-
 board/netta2/Makefile                              |  18 +-
 board/netta2/flash.c                               |  18 +-
 board/netta2/netta2.c                              |  18 +-
 board/netta2/u-boot.lds                            |  18 +-
 board/netta2/u-boot.lds.debug                      |  18 +-
 board/netvia/Makefile                              |  18 +-
 board/netvia/flash.c                               |  18 +-
 board/netvia/netvia.c                              |  18 +-
 board/netvia/u-boot.lds                            |  18 +-
 board/netvia/u-boot.lds.debug                      |  18 +-
 board/nokia/rx51/Makefile                          |  18 +-
 board/nokia/rx51/lowlevel_init.S                   |  18 +-
 board/nokia/rx51/rx51.c                            |  18 +-
 board/nokia/rx51/rx51.h                            |  18 +-
 board/nokia/rx51/tag_omap.h                        |  18 +-
 board/nvidia/cardhu/Makefile                       |  19 +-
 board/nvidia/cardhu/cardhu.c                       |  18 +-
 board/nvidia/common/Makefile                       |  18 +-
 board/nvidia/common/board.c                        |  18 +-
 board/nvidia/common/emc.c                          |  18 +-
 board/nvidia/common/emc.h                          |  18 +-
 board/nvidia/harmony/Makefile                      |  19 +-
 board/nvidia/harmony/harmony.c                     |  18 +-
 board/nvidia/seaboard/Makefile                     |  19 +-
 board/nvidia/seaboard/seaboard.c                   |  18 +-
 board/nvidia/ventana/Makefile                      |  19 +-
 board/nvidia/whistler/Makefile                     |  19 +-
 board/nvidia/whistler/whistler.c                   |  18 +-
 board/nx823/Makefile                               |  18 +-
 board/nx823/flash.c                                |  18 +-
 board/nx823/nx823.c                                |  18 +-
 board/nx823/u-boot.lds                             |  18 +-
 board/nx823/u-boot.lds.debug                       |  18 +-
 board/olimex/mx23_olinuxino/Makefile               |  18 +-
 board/olimex/mx23_olinuxino/mx23_olinuxino.c       |  18 +-
 board/olimex/mx23_olinuxino/spl_boot.c             |  18 +-
 board/omicron/calimain/Makefile                    |  18 +-
 board/omicron/calimain/calimain.c                  |  14 +-
 board/openrisc/openrisc-generic/Makefile           |  18 +-
 board/openrisc/openrisc-generic/config.mk          |  15 +-
 board/openrisc/openrisc-generic/openrisc-generic.c |  18 +-
 board/openrisc/openrisc-generic/or1ksim.cfg        |  15 +-
 board/overo/Makefile                               |  18 +-
 board/overo/overo.c                                |  18 +-
 board/overo/overo.h                                |  18 +-
 board/palmld/Makefile                              |  15 +-
 board/palmld/palmld.c                              |  15 +-
 board/palmtc/Makefile                              |  15 +-
 board/palmtc/palmtc.c                              |  15 +-
 board/pandora/Makefile                             |  18 +-
 board/pandora/pandora.c                            |  18 +-
 board/pandora/pandora.h                            |  18 +-
 board/pb1x00/Makefile                              |  18 +-
 board/pb1x00/config.mk                             |  18 +-
 board/pb1x00/flash.c                               |  18 +-
 board/pb1x00/pb1x00.c                              |  18 +-
 board/pcs440ep/Makefile                            |  18 +-
 board/pcs440ep/config.mk                           |  18 +-
 board/pcs440ep/flash.c                             |  18 +-
 board/pcs440ep/init.S                              |  18 +-
 board/pcs440ep/pcs440ep.c                          |  18 +-
 board/pdm360ng/Makefile                            |  18 +-
 board/pdm360ng/pdm360ng.c                          |  19 +-
 board/phytec/pcm030/Makefile                       |  18 +-
 board/phytec/pcm030/mt46v32m16-75.h                |  18 +-
 board/phytec/pcm030/pcm030.c                       |  18 +-
 board/phytec/pcm051/Makefile                       |  10 +-
 board/phytec/pcm051/board.c                        |  10 +-
 board/phytec/pcm051/board.h                        |  10 +-
 board/pm520/Makefile                               |  18 +-
 board/pm520/flash.c                                |  18 +-
 board/pm520/mt46v16m16-75.h                        |  18 +-
 board/pm520/mt48lc16m16a2-75.h                     |  18 +-
 board/pm520/pm520.c                                |  18 +-
 board/pm826/Makefile                               |  18 +-
 board/pm826/flash.c                                |  18 +-
 board/pm826/pm826.c                                |  18 +-
 board/pm828/Makefile                               |  18 +-
 board/pm828/flash.c                                |  18 +-
 board/pm828/pm828.c                                |  18 +-
 board/pn62/Makefile                                |  18 +-
 board/pn62/cmd_pn62.c                              |  18 +-
 board/pn62/misc.c                                  |  18 +-
 board/pn62/pn62.c                                  |  18 +-
 board/pn62/pn62.h                                  |  18 +-
 board/ppmc7xx/Makefile                             |  18 +-
 board/ppmc7xx/pci.c                                |  18 +-
 board/ppmc8260/Makefile                            |  18 +-
 board/ppmc8260/ppmc8260.c                          |  18 +-
 board/ppmc8260/strataflash.c                       |  18 +-
 board/pr1/Makefile                                 |  18 +-
 board/pr1/config.mk                                |  18 +-
 board/prodrive/alpr/Makefile                       |  18 +-
 board/prodrive/alpr/alpr.c                         |  18 +-
 board/prodrive/alpr/config.mk                      |  18 +-
 board/prodrive/alpr/fpga.c                         |  19 +-
 board/prodrive/alpr/init.S                         |  18 +-
 board/prodrive/alpr/nand.c                         |  18 +-
 board/prodrive/common/flash.c                      |  18 +-
 board/prodrive/common/fpga.c                       |  18 +-
 board/prodrive/p3mx/64460.h                        |  18 +-
 board/prodrive/p3mx/Makefile                       |  18 +-
 board/prodrive/p3mx/eth.h                          |  18 +-
 board/prodrive/p3mx/mpsc.c                         |  18 +-
 board/prodrive/p3mx/mpsc.h                         |  18 +-
 board/prodrive/p3mx/mv_eth.c                       |  33 +-
 board/prodrive/p3mx/mv_eth.h                       |  18 +-
 board/prodrive/p3mx/mv_regs.h                      |  18 +-
 board/prodrive/p3mx/p3mx.c                         |  18 +-
 board/prodrive/p3mx/p3mx.h                         |  18 +-
 board/prodrive/p3mx/pci.c                          |  19 +-
 board/prodrive/p3mx/ppc_error_no.h                 |  18 +-
 board/prodrive/p3mx/sdram_init.c                   |  18 +-
 board/prodrive/p3mx/serial.c                       |  18 +-
 board/prodrive/p3mx/serial.h                       |  18 +-
 board/prodrive/p3p440/Makefile                     |  18 +-
 board/prodrive/p3p440/config.mk                    |  18 +-
 board/prodrive/p3p440/init.S                       |  18 +-
 board/prodrive/p3p440/p3p440.c                     |  18 +-
 board/prodrive/p3p440/p3p440.h                     |  18 +-
 board/prodrive/pdnb3/Makefile                      |  18 +-
 board/prodrive/pdnb3/flash.c                       |  18 +-
 board/prodrive/pdnb3/nand.c                        |  18 +-
 board/prodrive/pdnb3/pdnb3.c                       |  18 +-
 board/psyent/common/AMDLV065D.c                    |  18 +-
 board/psyent/pci5441/Makefile                      |  18 +-
 board/psyent/pci5441/config.mk                     |  18 +-
 board/psyent/pci5441/pci5441.c                     |  18 +-
 board/psyent/pk1c20/Makefile                       |  18 +-
 board/psyent/pk1c20/config.mk                      |  18 +-
 board/psyent/pk1c20/led.c                          |  18 +-
 board/psyent/pk1c20/pk1c20.c                       |  18 +-
 board/pxa255_idp/Makefile                          |  18 +-
 board/pxa255_idp/pxa_idp.c                         |  18 +-
 board/pxa255_idp/pxa_reg_calcs.py                  |  15 +-
 board/qemu-mips/Makefile                           |  18 +-
 board/qemu-mips/qemu-mips.c                        |  18 +-
 board/qi/qi_lb60/Makefile                          |  15 +-
 board/qi/qi_lb60/config.mk                         |  15 +-
 board/quad100hd/Makefile                           |  18 +-
 board/quad100hd/nand.c                             |  18 +-
 board/quad100hd/quad100hd.c                        |  18 +-
 board/quantum/Makefile                             |  18 +-
 board/quantum/fpga.c                               |  18 +-
 board/quantum/fpga.h                               |  19 +-
 board/quantum/quantum.c                            |  18 +-
 board/quantum/u-boot.lds                           |  18 +-
 board/quantum/u-boot.lds.debug                     |  18 +-
 board/r360mpi/Makefile                             |  18 +-
 board/r360mpi/flash.c                              |  18 +-
 board/r360mpi/r360mpi.c                            |  18 +-
 board/r360mpi/u-boot.lds                           |  18 +-
 board/raidsonic/ib62x0/Makefile                    |  16 +-
 board/raidsonic/ib62x0/ib62x0.c                    |  16 +-
 board/raidsonic/ib62x0/ib62x0.h                    |  16 +-
 board/raidsonic/ib62x0/kwbimage.cfg                |  16 +-
 board/rattler/Makefile                             |  18 +-
 board/rattler/rattler.c                            |  18 +-
 board/rbc823/Makefile                              |  18 +-
 board/rbc823/flash.c                               |  18 +-
 board/rbc823/kbd.c                                 |  18 +-
 board/rbc823/rbc823.c                              |  18 +-
 board/rbc823/u-boot.lds                            |  18 +-
 board/renesas/MigoR/Makefile                       |  15 +-
 board/renesas/MigoR/lowlevel_init.S                |  15 +-
 board/renesas/MigoR/migo_r.c                       |  15 +-
 board/renesas/ap325rxa/Makefile                    |  15 +-
 board/renesas/ap325rxa/ap325rxa.c                  |  15 +-
 board/renesas/ap325rxa/lowlevel_init.S             |  15 +-
 board/renesas/ecovec/Makefile                      |  15 +-
 board/renesas/ecovec/ecovec.c                      |  15 +-
 board/renesas/ecovec/lowlevel_init.S               |  15 +-
 board/renesas/r0p7734/Makefile                     |  15 +-
 board/renesas/r0p7734/lowlevel_init.S              |  15 +-
 board/renesas/r0p7734/r0p7734.c                    |  18 +-
 board/renesas/r2dplus/Makefile                     |  15 +-
 board/renesas/r2dplus/r2dplus.c                    |  18 +-
 board/renesas/r7780mp/Makefile                     |  15 +-
 board/renesas/r7780mp/lowlevel_init.S              |  15 +-
 board/renesas/r7780mp/r7780mp.c                    |  15 +-
 board/renesas/r7780mp/r7780mp.h                    |  15 +-
 board/renesas/rsk7203/Makefile                     |  15 +-
 board/renesas/rsk7203/lowlevel_init.S              |  15 +-
 board/renesas/rsk7203/rsk7203.c                    |  15 +-
 board/renesas/rsk7264/Makefile                     |   3 +-
 board/renesas/rsk7264/lowlevel_init.S              |   3 +-
 board/renesas/rsk7264/rsk7264.c                    |   3 +-
 board/renesas/rsk7269/Makefile                     |   3 +-
 board/renesas/rsk7269/lowlevel_init.S              |   3 +-
 board/renesas/rsk7269/rsk7269.c                    |   3 +-
 board/renesas/sh7752evb/Makefile                   |  15 +-
 board/renesas/sh7752evb/lowlevel_init.S            |  15 +-
 board/renesas/sh7752evb/sh7752evb.c                |  18 +-
 board/renesas/sh7752evb/u-boot.lds                 |  18 +-
 board/renesas/sh7757lcr/Makefile                   |  15 +-
 board/renesas/sh7757lcr/lowlevel_init.S            |  15 +-
 board/renesas/sh7757lcr/sh7757lcr.c                |  18 +-
 board/renesas/sh7757lcr/u-boot.lds                 |  18 +-
 board/renesas/sh7763rdp/Makefile                   |  15 +-
 board/renesas/sh7763rdp/lowlevel_init.S            |  15 +-
 board/renesas/sh7763rdp/sh7763rdp.c                |  15 +-
 board/renesas/sh7785lcr/Makefile                   |  15 +-
 board/renesas/sh7785lcr/lowlevel_init.S            |  15 +-
 board/renesas/sh7785lcr/rtl8169.h                  |  15 +-
 board/renesas/sh7785lcr/rtl8169_mac.c              |  15 +-
 board/renesas/sh7785lcr/selfcheck.c                |  15 +-
 board/renesas/sh7785lcr/sh7785lcr.c                |  15 +-
 board/ronetix/pm9261/Makefile                      |  18 +-
 board/ronetix/pm9261/led.c                         |  18 +-
 board/ronetix/pm9261/partition.c                   |  16 +-
 board/ronetix/pm9261/pm9261.c                      |  18 +-
 board/ronetix/pm9263/Makefile                      |  18 +-
 board/ronetix/pm9263/led.c                         |  18 +-
 board/ronetix/pm9263/partition.c                   |  16 +-
 board/ronetix/pm9263/pm9263.c                      |  18 +-
 board/ronetix/pm9g45/Makefile                      |  18 +-
 board/ronetix/pm9g45/pm9g45.c                      |  18 +-
 board/rpxsuper/Makefile                            |  18 +-
 board/rpxsuper/flash.c                             |  18 +-
 board/rpxsuper/rpxsuper.c                          |  18 +-
 board/rsdproto/Makefile                            |  18 +-
 board/rsdproto/flash.c                             |  18 +-
 board/rsdproto/rsdproto.c                          |  18 +-
 board/rsdproto/u-boot.lds                          |  18 +-
 board/sacsng/Makefile                              |  18 +-
 board/sacsng/clkinit.c                             |  18 +-
 board/sacsng/clkinit.h                             |  18 +-
 board/sacsng/flash.c                               |  18 +-
 board/sacsng/sacsng.c                              |  18 +-
 board/samsung/common/Makefile                      |  18 +-
 board/samsung/common/multi_i2c.c                   |  18 +-
 board/samsung/goni/Makefile                        |  18 +-
 board/samsung/goni/config.mk                       |  18 +-
 board/samsung/goni/goni.c                          |  18 +-
 board/samsung/goni/lowlevel_init.S                 |  18 +-
 board/samsung/goni/mem_setup.S                     |  18 +-
 board/samsung/goni/onenand.c                       |  18 +-
 board/samsung/origen/Makefile                      |  18 +-
 board/samsung/origen/lowlevel_init.S               |  18 +-
 board/samsung/origen/mem_setup.S                   |  18 +-
 board/samsung/origen/mmc_boot.c                    |  18 +-
 board/samsung/origen/origen.c                      |  18 +-
 board/samsung/origen/origen_setup.h                |  18 +-
 board/samsung/origen/tools/mkv310_image.c          |  18 +-
 board/samsung/smdk2410/Makefile                    |  18 +-
 board/samsung/smdk2410/lowlevel_init.S             |  18 +-
 board/samsung/smdk2410/smdk2410.c                  |  18 +-
 board/samsung/smdk5250/Makefile                    |  18 +-
 board/samsung/smdk5250/clock_init.c                |  18 +-
 board/samsung/smdk5250/clock_init.h                |  18 +-
 board/samsung/smdk5250/dmc_common.c                |  18 +-
 board/samsung/smdk5250/dmc_init_ddr3.c             |  18 +-
 board/samsung/smdk5250/exynos5-dt.c                |  18 +-
 board/samsung/smdk5250/lowlevel_init.S             |  18 +-
 board/samsung/smdk5250/setup.h                     |  18 +-
 board/samsung/smdk5250/smdk5250-uboot-spl.lds      |  18 +-
 board/samsung/smdk5250/smdk5250.c                  |  18 +-
 board/samsung/smdk5250/smdk5250_spl.c              |  18 +-
 board/samsung/smdk5250/spl_boot.c                  |  18 +-
 board/samsung/smdkc100/Makefile                    |  18 +-
 board/samsung/smdkc100/lowlevel_init.S             |  18 +-
 board/samsung/smdkc100/mem_setup.S                 |  18 +-
 board/samsung/smdkc100/onenand.c                   |  18 +-
 board/samsung/smdkc100/smdkc100.c                  |  18 +-
 board/samsung/smdkv310/Makefile                    |  18 +-
 board/samsung/smdkv310/lowlevel_init.S             |  18 +-
 board/samsung/smdkv310/mem_setup.S                 |  18 +-
 board/samsung/smdkv310/mmc_boot.c                  |  18 +-
 board/samsung/smdkv310/smdkv310.c                  |  18 +-
 board/samsung/smdkv310/tools/mkv310_image.c        |  18 +-
 board/samsung/trats/Makefile                       |  18 +-
 board/samsung/trats/setup.h                        |  18 +-
 board/samsung/trats/trats.c                        |  18 +-
 board/samsung/universal_c210/Makefile              |  18 +-
 board/samsung/universal_c210/onenand.c             |  18 +-
 board/samsung/universal_c210/universal.c           |  18 +-
 board/sandbox/sandbox/Makefile                     |  18 +-
 board/sandbox/sandbox/README.sandbox               |  18 +-
 board/sandbox/sandbox/sandbox.c                    |  18 +-
 board/sandburst/common/flash.c                     |  18 +-
 board/sandburst/common/ppc440gx_i2c.c              |  18 +-
 board/sandburst/common/ppc440gx_i2c.h              |  18 +-
 board/sandburst/common/sb_common.c                 |  18 +-
 board/sandburst/common/sb_common.h                 |  18 +-
 board/sandburst/karef/Makefile                     |  18 +-
 board/sandburst/karef/config.mk                    |  18 +-
 board/sandburst/karef/init.S                       |  19 +-
 board/sandburst/karef/karef.c                      |  18 +-
 board/sandburst/karef/karef.h                      |  18 +-
 board/sandburst/karef/karef_version.h              |  18 +-
 board/sandburst/karef/u-boot.lds.debug             |  18 +-
 board/sandburst/metrobox/Makefile                  |  18 +-
 board/sandburst/metrobox/config.mk                 |  18 +-
 board/sandburst/metrobox/init.S                    |  19 +-
 board/sandburst/metrobox/metrobox.c                |  18 +-
 board/sandburst/metrobox/metrobox.h                |  18 +-
 board/sandburst/metrobox/metrobox_version.h        |  18 +-
 board/sandburst/metrobox/u-boot.lds.debug          |  18 +-
 board/sandpoint/Makefile                           |  18 +-
 board/sandpoint/early_init.S                       |  18 +-
 board/sandpoint/flash.c                            |  18 +-
 board/sandpoint/sandpoint.c                        |  18 +-
 board/sandpoint/speed.h                            |  18 +-
 board/sandpoint/u-boot.lds                         |  18 +-
 board/sbc405/Makefile                              |  18 +-
 board/sbc405/sbc405.c                              |  18 +-
 board/sbc405/strataflash.c                         |  18 +-
 board/sbc8349/Makefile                             |  18 +-
 board/sbc8349/pci.c                                |  19 +-
 board/sbc8349/sbc8349.c                            |  19 +-
 board/sbc8548/Makefile                             |  18 +-
 board/sbc8548/law.c                                |  18 +-
 board/sbc8548/sbc8548.c                            |  18 +-
 board/sbc8548/tlb.c                                |  18 +-
 board/sbc8641d/Makefile                            |  18 +-
 board/sbc8641d/law.c                               |  18 +-
 board/sbc8641d/sbc8641d.c                          |  18 +-
 board/sc3/Makefile                                 |  18 +-
 board/sc3/sc3.c                                    |  20 +-
 board/sc3/sc3.h                                    |  18 +-
 board/sc3/sc3nand.c                                |  18 +-
 board/scb9328/Makefile                             |  18 +-
 board/scb9328/flash.c                              |  19 +-
 board/scb9328/lowlevel_init.S                      |  16 +-
 board/scb9328/scb9328.c                            |  16 +-
 board/schulercontrol/sc_sps_1/Makefile             |  18 +-
 board/schulercontrol/sc_sps_1/sc_sps_1.c           |  18 +-
 board/schulercontrol/sc_sps_1/spl_boot.c           |  18 +-
 board/sheldon/simpc8313/Makefile                   |  18 +-
 board/sheldon/simpc8313/sdram.c                    |  18 +-
 board/sheldon/simpc8313/simpc8313.c                |  18 +-
 board/shmin/Makefile                               |  15 +-
 board/shmin/lowlevel_init.S                        |  15 +-
 board/shmin/shmin.c                                |  15 +-
 board/sixnet/Makefile                              |  18 +-
 board/sixnet/flash.c                               |  18 +-
 board/sixnet/sixnet.c                              |  18 +-
 board/sixnet/sixnet.h                              |  18 +-
 board/sixnet/u-boot.lds                            |  18 +-
 board/snmc/qs850/Makefile                          |  18 +-
 board/snmc/qs850/flash.c                           |  18 +-
 board/snmc/qs850/qs850.c                           |  18 +-
 board/snmc/qs850/u-boot.lds                        |  18 +-
 board/snmc/qs860t/Makefile                         |  18 +-
 board/snmc/qs860t/flash.c                          |  18 +-
 board/snmc/qs860t/qs860t.c                         |  18 +-
 board/snmc/qs860t/u-boot.lds                       |  18 +-
 board/socrates/Makefile                            |  18 +-
 board/socrates/law.c                               |  18 +-
 board/socrates/nand.c                              |  18 +-
 board/socrates/sdram.c                             |  19 +-
 board/socrates/socrates.c                          |  18 +-
 board/socrates/tlb.c                               |  18 +-
 board/socrates/upm_table.h                         |  18 +-
 board/spc1920/Makefile                             |  18 +-
 board/spc1920/hpi.c                                |  18 +-
 board/spc1920/hpi.h                                |  18 +-
 board/spc1920/spc1920.c                            |  18 +-
 board/spc1920/u-boot.lds                           |  18 +-
 board/spd8xx/Makefile                              |  18 +-
 board/spd8xx/flash.c                               |  18 +-
 board/spd8xx/spd8xx.c                              |  18 +-
 board/spd8xx/u-boot.lds                            |  18 +-
 board/spd8xx/u-boot.lds.debug                      |  18 +-
 board/spear/common/Makefile                        |  18 +-
 board/spear/common/spr_lowlevel_init.S             |  18 +-
 board/spear/common/spr_misc.c                      |  18 +-
 board/spear/spear300/Makefile                      |  18 +-
 board/spear/spear300/spear300.c                    |  18 +-
 board/spear/spear310/Makefile                      |  18 +-
 board/spear/spear310/spear310.c                    |  18 +-
 board/spear/spear320/Makefile                      |  18 +-
 board/spear/spear320/spear320.c                    |  18 +-
 board/spear/spear600/Makefile                      |  18 +-
 board/spear/spear600/spear600.c                    |  18 +-
 board/spear/x600/Makefile                          |  18 +-
 board/spear/x600/fpga.c                            |  18 +-
 board/spear/x600/fpga.h                            |  18 +-
 board/spear/x600/x600.c                            |  18 +-
 board/st-ericsson/snowball/Makefile                |  18 +-
 board/st-ericsson/snowball/snowball.c              |  14 +-
 board/st-ericsson/u8500/Makefile                   |  18 +-
 board/st-ericsson/u8500/gpio.c                     |  18 +-
 board/st-ericsson/u8500/u8500_href.c               |  14 +-
 board/st/nhk8815/Makefile                          |  18 +-
 board/st/nhk8815/nhk8815.c                         |  18 +-
 board/stx/stxgp3/Makefile                          |  18 +-
 board/stx/stxgp3/flash.c                           |  18 +-
 board/stx/stxgp3/law.c                             |  18 +-
 board/stx/stxgp3/stxgp3.c                          |  18 +-
 board/stx/stxgp3/tlb.c                             |  18 +-
 board/stx/stxssa/Makefile                          |  18 +-
 board/stx/stxssa/law.c                             |  18 +-
 board/stx/stxssa/stxssa.c                          |  18 +-
 board/stx/stxssa/tlb.c                             |  18 +-
 board/stx/stxxtc/Makefile                          |  18 +-
 board/stx/stxxtc/stxxtc.c                          |  18 +-
 board/stx/stxxtc/u-boot.lds                        |  18 +-
 board/stx/stxxtc/u-boot.lds.debug                  |  18 +-
 board/svm_sc8xx/Makefile                           |  18 +-
 board/svm_sc8xx/flash.c                            |  18 +-
 board/svm_sc8xx/svm_sc8xx.c                        |  18 +-
 board/svm_sc8xx/u-boot.lds                         |  18 +-
 board/svm_sc8xx/u-boot.lds.debug                   |  18 +-
 board/syteco/jadecpu/Makefile                      |  18 +-
 board/syteco/jadecpu/jadecpu.c                     |  15 +-
 board/syteco/jadecpu/lowlevel_init.S               |  18 +-
 board/syteco/zmx25/Makefile                        |  18 +-
 board/syteco/zmx25/lowlevel_init.S                 |  15 +-
 board/syteco/zmx25/zmx25.c                         |  16 +-
 board/t3corp/Makefile                              |  18 +-
 board/t3corp/chip_config.c                         |  19 +-
 board/t3corp/config.mk                             |  18 +-
 board/t3corp/init.S                                |  18 +-
 board/t3corp/t3corp.c                              |  15 +-
 board/taskit/stamp9g20/Makefile                    |  18 +-
 board/taskit/stamp9g20/led.c                       |  18 +-
 board/taskit/stamp9g20/stamp9g20.c                 |  18 +-
 board/tcm-bf518/Makefile                           |  18 +-
 board/tcm-bf518/config.mk                          |  18 +-
 board/tcm-bf537/Makefile                           |  18 +-
 board/tcm-bf537/config.mk                          |  18 +-
 board/technexion/twister/Makefile                  |  14 +-
 board/technexion/twister/twister.c                 |  18 +-
 board/technexion/twister/twister.h                 |  14 +-
 board/teejet/mt_ventoux/Makefile                   |  14 +-
 board/teejet/mt_ventoux/mt_ventoux.c               |  14 +-
 board/teejet/mt_ventoux/mt_ventoux.h               |  14 +-
 board/ti/am335x/Makefile                           |  10 +-
 board/ti/am335x/board.c                            |  10 +-
 board/ti/am335x/board.h                            |  10 +-
 board/ti/am3517crane/Makefile                      |  14 +-
 board/ti/am3517crane/am3517crane.c                 |  14 +-
 board/ti/am3517crane/am3517crane.h                 |  14 +-
 board/ti/beagle/Makefile                           |  18 +-
 board/ti/beagle/beagle.c                           |  18 +-
 board/ti/beagle/beagle.h                           |  18 +-
 board/ti/beagle/led.c                              |  15 +-
 board/ti/dra7xx/Makefile                           |  18 +-
 board/ti/dra7xx/evm.c                              |  18 +-
 board/ti/dra7xx/mux_data.h                         |  18 +-
 board/ti/evm/Makefile                              |  18 +-
 board/ti/evm/evm.c                                 |  18 +-
 board/ti/evm/evm.h                                 |  18 +-
 board/ti/omap1510inn/Makefile                      |  18 +-
 board/ti/omap1510inn/lowlevel_init.S               |  18 +-
 board/ti/omap1510inn/omap1510innovator.c           |  18 +-
 board/ti/omap5912osk/Makefile                      |  18 +-
 board/ti/omap5912osk/lowlevel_init.S               |  18 +-
 board/ti/omap5912osk/omap5912osk.c                 |  18 +-
 board/ti/omap5_uevm/Makefile                       |  18 +-
 board/ti/omap5_uevm/evm.c                          |  18 +-
 board/ti/omap5_uevm/mux_data.h                     |  18 +-
 board/ti/omap730p2/Makefile                        |  18 +-
 board/ti/omap730p2/flash.c                         |  18 +-
 board/ti/omap730p2/lowlevel_init.S                 |  18 +-
 board/ti/omap730p2/omap730p2.c                     |  18 +-
 board/ti/panda/Makefile                            |  18 +-
 board/ti/panda/panda.c                             |  18 +-
 board/ti/panda/panda_mux_data.h                    |  18 +-
 board/ti/sdp3430/Makefile                          |  18 +-
 board/ti/sdp3430/config.mk                         |  18 +-
 board/ti/sdp3430/sdp.c                             |  18 +-
 board/ti/sdp3430/sdp.h                             |  18 +-
 board/ti/sdp4430/Makefile                          |  18 +-
 board/ti/sdp4430/cmd_bat.c                         |  18 +-
 board/ti/sdp4430/sdp.c                             |  18 +-
 board/ti/sdp4430/sdp4430_mux_data.h                |  18 +-
 board/ti/ti814x/Makefile                           |  10 +-
 board/ti/ti814x/evm.c                              |  10 +-
 board/ti/tnetv107xevm/Makefile                     |  17 +-
 board/ti/tnetv107xevm/config.mk                    |  17 +-
 board/ti/tnetv107xevm/sdb_board.c                  |  17 +-
 board/timll/devkit3250/Makefile                    |  18 +-
 board/timll/devkit3250/devkit3250.c                |  15 +-
 board/timll/devkit8000/Makefile                    |  18 +-
 board/timll/devkit8000/devkit8000.c                |  18 +-
 board/timll/devkit8000/devkit8000.h                |  18 +-
 board/toradex/colibri_pxa270/Makefile              |  15 +-
 board/toradex/colibri_pxa270/colibri_pxa270.c      |  15 +-
 .../colibri_t20-common/colibri_t20-common.c        |  11 +-
 .../colibri_t20-common/colibri_t20-common.h        |  11 +-
 board/toradex/colibri_t20_iris/Makefile            |  11 +-
 board/toradex/colibri_t20_iris/colibri_t20_iris.c  |  11 +-
 board/total5200/Makefile                           |  18 +-
 board/total5200/mt48lc16m16a2-75.h                 |  18 +-
 board/total5200/mt48lc32m16a2-75.h                 |  18 +-
 board/total5200/sdram.c                            |  18 +-
 board/total5200/sdram.h                            |  18 +-
 board/total5200/total5200.c                        |  18 +-
 board/tqc/tqm5200/Makefile                         |  18 +-
 board/tqc/tqm5200/cam5200_flash.c                  |  18 +-
 board/tqc/tqm5200/cmd_stk52xx.c                    |  18 +-
 board/tqc/tqm5200/cmd_tb5200.c                     |  18 +-
 board/tqc/tqm5200/mt48lc16m16a2-75.h               |  18 +-
 board/tqc/tqm5200/tqm5200.c                        |  18 +-
 board/tqc/tqm8260/Makefile                         |  18 +-
 board/tqc/tqm8260/tqm8260.c                        |  18 +-
 board/tqc/tqm8272/Makefile                         |  18 +-
 board/tqc/tqm8272/nand.c                           |  18 +-
 board/tqc/tqm8272/tqm8272.c                        |  18 +-
 board/tqc/tqm8272/tqm8272.h                        |  18 +-
 board/tqc/tqm834x/Makefile                         |  18 +-
 board/tqc/tqm834x/pci.c                            |  19 +-
 board/tqc/tqm834x/tqm834x.c                        |  19 +-
 board/tqc/tqm8xx/Makefile                          |  18 +-
 board/tqc/tqm8xx/load_sernum_ethaddr.c             |  18 +-
 board/tqc/tqm8xx/tqm8xx.c                          |  18 +-
 board/tqc/tqm8xx/u-boot.lds                        |  18 +-
 board/trizepsiv/Makefile                           |  18 +-
 board/trizepsiv/conxs.c                            |  18 +-
 board/trizepsiv/eeprom.c                           |  18 +-
 board/ttcontrol/vision2/Makefile                   |  15 +-
 board/ttcontrol/vision2/imximage_hynix.cfg         |  18 +-
 board/ttcontrol/vision2/vision2.c                  |  18 +-
 board/utx8245/Makefile                             |  18 +-
 board/utx8245/flash.c                              |  18 +-
 board/utx8245/utx8245.c                            |  18 +-
 board/v37/Makefile                                 |  18 +-
 board/v37/flash.c                                  |  18 +-
 board/v37/u-boot.lds                               |  18 +-
 board/v37/v37.c                                    |  18 +-
 board/v38b/Makefile                                |  18 +-
 board/v38b/ethaddr.c                               |  18 +-
 board/v38b/v38b.c                                  |  18 +-
 board/ve8313/Makefile                              |  18 +-
 board/ve8313/ve8313.c                              |  18 +-
 board/vpac270/Makefile                             |  15 +-
 board/vpac270/onenand.c                            |  18 +-
 board/vpac270/u-boot-spl.lds                       |  18 +-
 board/vpac270/vpac270.c                            |  15 +-
 board/w7o/Makefile                                 |  18 +-
 board/w7o/cmd_vpd.c                                |  18 +-
 board/w7o/errors.h                                 |  18 +-
 board/w7o/flash.c                                  |  18 +-
 board/w7o/fpga.c                                   |  18 +-
 board/w7o/fsboot.c                                 |  18 +-
 board/w7o/post1.S                                  |  18 +-
 board/w7o/post2.c                                  |  18 +-
 board/w7o/u-boot.lds.debug                         |  18 +-
 board/w7o/vpd.c                                    |  18 +-
 board/w7o/vpd.h                                    |  18 +-
 board/w7o/w7o.c                                    |  18 +-
 board/w7o/w7o.h                                    |  18 +-
 board/w7o/watchdog.c                               |  18 +-
 board/wandboard/Makefile                           |   5 +-
 board/wandboard/wandboard.c                        |   5 +-
 board/woodburn/Makefile                            |  15 +-
 board/woodburn/lowlevel_init.S                     |  15 +-
 board/woodburn/woodburn.c                          |  18 +-
 board/xaeniax/Makefile                             |  18 +-
 board/xaeniax/flash.c                              |  18 +-
 board/xaeniax/xaeniax.c                            |  18 +-
 board/xes/common/Makefile                          |  18 +-
 board/xes/common/actl_nand.c                       |  18 +-
 board/xes/common/board.c                           |   5 +-
 board/xes/common/fsl_8xxx_clk.c                    |  18 +-
 board/xes/common/fsl_8xxx_misc.c                   |  18 +-
 board/xes/common/fsl_8xxx_misc.h                   |  18 +-
 board/xes/common/fsl_8xxx_pci.c                    |  18 +-
 board/xes/xpedite1000/Makefile                     |  18 +-
 board/xes/xpedite1000/config.mk                    |  18 +-
 board/xes/xpedite1000/init.S                       |  19 +-
 board/xes/xpedite1000/u-boot.lds.debug             |  18 +-
 board/xes/xpedite1000/xpedite1000.c                |  18 +-
 board/xes/xpedite517x/Makefile                     |  18 +-
 board/xes/xpedite517x/ddr.c                        |  18 +-
 board/xes/xpedite517x/law.c                        |  18 +-
 board/xes/xpedite517x/xpedite517x.c                |  18 +-
 board/xes/xpedite520x/Makefile                     |  18 +-
 board/xes/xpedite520x/law.c                        |  18 +-
 board/xes/xpedite520x/tlb.c                        |  18 +-
 board/xes/xpedite520x/xpedite520x.c                |  18 +-
 board/xes/xpedite537x/Makefile                     |   8 +-
 board/xes/xpedite537x/ddr.c                        |  18 +-
 board/xes/xpedite537x/law.c                        |  18 +-
 board/xes/xpedite537x/tlb.c                        |  18 +-
 board/xes/xpedite537x/xpedite537x.c                |  18 +-
 board/xes/xpedite550x/Makefile                     |   5 +-
 board/xes/xpedite550x/ddr.c                        |  18 +-
 board/xes/xpedite550x/law.c                        |  18 +-
 board/xes/xpedite550x/tlb.c                        |  18 +-
 board/xes/xpedite550x/xpedite550x.c                |  18 +-
 board/xilinx/microblaze-generic/Makefile           |  18 +-
 board/xilinx/microblaze-generic/config.mk          |  18 +-
 .../xilinx/microblaze-generic/microblaze-generic.c |  18 +-
 board/xilinx/microblaze-generic/xparameters.h      |  18 +-
 board/xilinx/ml507/Makefile                        |  18 +-
 board/xilinx/ml507/ml507.c                         |  13 +-
 board/xilinx/ml507/xparameters.h                   |  13 +-
 board/xilinx/ppc405-generic/Makefile               |  18 +-
 .../xilinx/ppc405-generic/xilinx_ppc405_generic.c  |  13 +-
 board/xilinx/ppc405-generic/xparameters.h          |  13 +-
 board/xilinx/ppc440-generic/Makefile               |  18 +-
 board/xilinx/ppc440-generic/init.S                 |  15 +-
 .../xilinx/ppc440-generic/xilinx_ppc440_generic.c  |  13 +-
 board/xilinx/ppc440-generic/xparameters.h          |  13 +-
 board/xilinx/zynq/Makefile                         |  18 +-
 board/xilinx/zynq/board.c                          |  18 +-
 board/zeus/Makefile                                |  18 +-
 board/zeus/update.c                                |  18 +-
 board/zeus/zeus.c                                  |  18 +-
 board/zipitz2/Makefile                             |  18 +-
 board/zipitz2/zipitz2.c                            |  18 +-
 board/zpc1900/Makefile                             |  18 +-
 board/zpc1900/zpc1900.c                            |  18 +-
 common/Makefile                                    |  18 +-
 common/board_f.c                                   |  18 +-
 common/board_r.c                                   |  18 +-
 common/bootstage.c                                 |  18 +-
 common/bouncebuf.c                                 |  18 +-
 common/cmd_ambapp.c                                |  18 +-
 common/cmd_bdinfo.c                                |  18 +-
 common/cmd_bmp.c                                   |  18 +-
 common/cmd_boot.c                                  |  18 +-
 common/cmd_bootm.c                                 |  18 +-
 common/cmd_bootmenu.c                              |  18 +-
 common/cmd_bootstage.c                             |  18 +-
 common/cmd_cache.c                                 |  18 +-
 common/cmd_cbfs.c                                  |  18 +-
 common/cmd_console.c                               |  18 +-
 common/cmd_cramfs.c                                |  15 +-
 common/cmd_dataflash_mmc_mux.c                     |  18 +-
 common/cmd_date.c                                  |  18 +-
 common/cmd_dcr.c                                   |  18 +-
 common/cmd_dfu.c                                   |  14 +-
 common/cmd_diag.c                                  |  18 +-
 common/cmd_disk.c                                  |  19 +-
 common/cmd_display.c                               |  18 +-
 common/cmd_dtt.c                                   |  18 +-
 common/cmd_echo.c                                  |  18 +-
 common/cmd_eeprom.c                                |  19 +-
 common/cmd_exit.c                                  |  18 +-
 common/cmd_ext2.c                                  |  19 +-
 common/cmd_ext4.c                                  |  16 +-
 common/cmd_fat.c                                   |  18 +-
 common/cmd_fdc.c                                   |  19 +-
 common/cmd_fdos.c                                  |  18 +-
 common/cmd_fdt.c                                   |  18 +-
 common/cmd_fitupd.c                                |  15 +-
 common/cmd_flash.c                                 |  18 +-
 common/cmd_fpga.c                                  |  19 +-
 common/cmd_fuse.c                                  |  18 +-
 common/cmd_gettime.c                               |  18 +-
 common/cmd_gpt.c                                   |  14 +-
 common/cmd_hash.c                                  |  15 +-
 common/cmd_help.c                                  |  18 +-
 common/cmd_i2c.c                                   |  18 +-
 common/cmd_ide.c                                   |  19 +-
 common/cmd_immap.c                                 |  18 +-
 common/cmd_io.c                                    |  26 +-
 common/cmd_irq.c                                   |  18 +-
 common/cmd_itest.c                                 |  18 +-
 common/cmd_jffs2.c                                 |  18 +-
 common/cmd_led.c                                   |  18 +-
 common/cmd_license.c                               |  18 +-
 common/cmd_load.c                                  |  18 +-
 common/cmd_log.c                                   |  18 +-
 common/cmd_mac.c                                   |  18 +-
 common/cmd_md5sum.c                                |  18 +-
 common/cmd_mdio.c                                  |  18 +-
 common/cmd_mem.c                                   |  18 +-
 common/cmd_mfsl.c                                  |  24 +-
 common/cmd_mii.c                                   |  18 +-
 common/cmd_misc.c                                  |  18 +-
 common/cmd_mmc.c                                   |  18 +-
 common/cmd_mp.c                                    |  18 +-
 common/cmd_mtdparts.c                              |  18 +-
 common/cmd_net.c                                   |  18 +-
 common/cmd_nvedit.c                                |  18 +-
 common/cmd_part.c                                  |  16 +-
 common/cmd_pci.c                                   |  18 +-
 common/cmd_pcmcia.c                                |  18 +-
 common/cmd_portio.c                                |  18 +-
 common/cmd_pxe.c                                   |  14 +-
 common/cmd_reginfo.c                               |  18 +-
 common/cmd_reiser.c                                |  19 +-
 common/cmd_sandbox.c                               |  15 +-
 common/cmd_sata.c                                  |  15 +-
 common/cmd_scsi.c                                  |  21 +-
 common/cmd_setexpr.c                               |  18 +-
 common/cmd_sha1sum.c                               |  18 +-
 common/cmd_sound.c                                 |  18 +-
 common/cmd_source.c                                |  18 +-
 common/cmd_spi.c                                   |  18 +-
 common/cmd_spl.c                                   |  18 +-
 common/cmd_terminal.c                              |  18 +-
 common/cmd_test.c                                  |  18 +-
 common/cmd_time.c                                  |  18 +-
 common/cmd_tpm.c                                   |  18 +-
 common/cmd_trace.c                                 |  15 +-
 common/cmd_tsi148.c                                |  18 +-
 common/cmd_ubifs.c                                 |  19 +-
 common/cmd_universe.c                              |  18 +-
 common/cmd_unzip.c                                 |  18 +-
 common/cmd_usb.c                                   |  19 +-
 common/cmd_usb_mass_storage.c                      |  15 +-
 common/cmd_version.c                               |  18 +-
 common/cmd_ximg.c                                  |  18 +-
 common/cmd_zfs.c                                   |  16 +-
 common/cmd_zip.c                                   |  18 +-
 common/command.c                                   |  18 +-
 common/console.c                                   |  18 +-
 common/edid.c                                      |  19 +-
 common/env_attr.c                                  |  18 +-
 common/env_callback.c                              |  18 +-
 common/env_common.c                                |  18 +-
 common/env_dataflash.c                             |  15 +-
 common/env_eeprom.c                                |  18 +-
 common/env_embedded.c                              |  18 +-
 common/env_fat.c                                   |  18 +-
 common/env_flags.c                                 |  18 +-
 common/env_flash.c                                 |  18 +-
 common/env_mmc.c                                   |  18 +-
 common/env_nand.c                                  |  18 +-
 common/env_nowhere.c                               |  18 +-
 common/env_nvram.c                                 |  18 +-
 common/env_onenand.c                               |  18 +-
 common/env_remote.c                                |  18 +-
 common/env_sf.c                                    |  18 +-
 common/env_ubi.c                                   |  18 +-
 common/fdt_support.c                               |  18 +-
 common/flash.c                                     |  18 +-
 common/hash.c                                      |  15 +-
 common/hush.c                                      |  15 +-
 common/hwconfig.c                                  |   5 +-
 common/image-fdt.c                                 |  18 +-
 common/image-fit.c                                 |  18 +-
 common/image-sig.c                                 |  15 +-
 common/image.c                                     |  18 +-
 common/iomux.c                                     |  18 +-
 common/lcd.c                                       |  18 +-
 common/main.c                                      |  18 +-
 common/memsize.c                                   |  18 +-
 common/menu.c                                      |  13 +-
 common/miiphyutil.c                                |  18 +-
 common/modem.c                                     |  18 +-
 common/s_record.c                                  |  18 +-
 common/spl/Makefile                                |   3 +-
 common/spl/spl.c                                   |  18 +-
 common/spl/spl_mmc.c                               |  18 +-
 common/spl/spl_nand.c                              |  18 +-
 common/spl/spl_net.c                               |  17 +-
 common/spl/spl_nor.c                               |  13 +-
 common/spl/spl_onenand.c                           |  18 +-
 common/spl/spl_ymodem.c                            |  18 +-
 common/stdio.c                                     |  18 +-
 common/update.c                                    |  19 +-
 common/usb.c                                       |  20 +-
 common/usb_hub.c                                   |  20 +-
 common/usb_kbd.c                                   |  19 +-
 common/usb_storage.c                               |  19 +-
 common/xyzModem.c                                  |  34 +-
 config.mk                                          |  21 +-
 disk/Makefile                                      |  18 +-
 disk/part.c                                        |  18 +-
 disk/part_amiga.c                                  |  18 +-
 disk/part_amiga.h                                  |  18 +-
 disk/part_dos.c                                    |  18 +-
 disk/part_dos.h                                    |  18 +-
 disk/part_efi.c                                    |  18 +-
 disk/part_iso.c                                    |  18 +-
 disk/part_iso.h                                    |  18 +-
 disk/part_mac.c                                    |  18 +-
 disk/part_mac.h                                    |  18 +-
 doc/README.autoboot                                |  18 +-
 doc/README.bootmenu                                |  18 +-
 doc/README.bus_vcxk                                |  18 +-
 doc/README.console                                 |  18 +-
 doc/README.fdt-control                             |  18 +-
 doc/README.gpt                                     |  18 +-
 doc/README.iomux                                   |  18 +-
 doc/README.menu                                    |  13 +-
 doc/README.nand                                    |  18 +-
 doc/README.pxe                                     |  13 +-
 doc/README.trace                                   |  15 +-
 doc/README.usb                                     |  19 +-
 doc/README.video                                   |  18 +-
 drivers/block/Makefile                             |  18 +-
 drivers/block/ahci.c                               |  19 +-
 drivers/block/ata_piix.c                           |  15 +-
 drivers/block/dwc_ahsata.c                         |  18 +-
 drivers/block/dwc_ahsata.h                         |  15 +-
 drivers/block/fsl_sata.c                           |  15 +-
 drivers/block/fsl_sata.h                           |  15 +-
 drivers/block/ftide020.c                           |  19 +-
 drivers/block/ftide020.h                           |  19 +-
 drivers/block/libata.c                             |  16 +-
 drivers/block/mvsata_ide.c                         |  18 +-
 drivers/block/mxc_ata.c                            |  15 +-
 drivers/block/sata_dwc.c                           |   7 +-
 drivers/block/sata_dwc.h                           |   7 +-
 drivers/block/sata_sil.c                           |  15 +-
 drivers/block/sata_sil.h                           |  15 +-
 drivers/block/sata_sil3114.c                       |  15 +-
 drivers/block/sata_sil3114.h                       |  15 +-
 drivers/block/sil680.c                             |  19 +-
 drivers/block/sym53c8xx.c                          |  18 +-
 drivers/block/systemace.c                          |  15 +-
 drivers/bootcount/Makefile                         |  18 +-
 drivers/bootcount/bootcount.c                      |  18 +-
 drivers/bootcount/bootcount_at91.c                 |  14 +-
 drivers/bootcount/bootcount_davinci.c              |  14 +-
 drivers/bootcount/bootcount_ram.c                  |  14 +-
 drivers/crypto/Makefile                            |  18 +-
 drivers/crypto/ace_sha.c                           |  15 +-
 drivers/crypto/ace_sha.h                           |  15 +-
 drivers/dfu/Makefile                               |  18 +-
 drivers/dfu/dfu.c                                  |  14 +-
 drivers/dfu/dfu_mmc.c                              |  14 +-
 drivers/dfu/dfu_nand.c                             |  14 +-
 drivers/dma/MCD_dmaApi.c                           |  18 +-
 drivers/dma/MCD_tasks.c                            |  18 +-
 drivers/dma/MCD_tasksInit.c                        |  18 +-
 drivers/dma/Makefile                               |  18 +-
 drivers/dma/apbh_dma.c                             |  14 +-
 drivers/dma/fsl_dma.c                              |  18 +-
 drivers/dma/omap3_dma.c                            |  15 +-
 drivers/fpga/ACEX1K.c                              |  19 +-
 drivers/fpga/Makefile                              |  18 +-
 drivers/fpga/altera.c                              |  19 +-
 drivers/fpga/cyclon2.c                             |  19 +-
 drivers/fpga/fpga.c                                |  19 +-
 drivers/fpga/ivm_core.c                            |  18 +-
 drivers/fpga/lattice.c                             |  19 +-
 drivers/fpga/spartan2.c                            |  19 +-
 drivers/fpga/spartan3.c                            |  19 +-
 drivers/fpga/stratixII.c                           |  19 +-
 drivers/fpga/virtex2.c                             |  19 +-
 drivers/fpga/xilinx.c                              |  19 +-
 drivers/fpga/zynqpl.c                              |  18 +-
 drivers/gpio/Makefile                              |  18 +-
 drivers/gpio/altera_pio.c                          |  15 +-
 drivers/gpio/at91_gpio.c                           |  18 +-
 drivers/gpio/bcm2835_gpio.c                        |  13 +-
 drivers/gpio/da8xx_gpio.c                          |  15 +-
 drivers/gpio/intel_ich6_gpio.c                     |  18 +-
 drivers/gpio/kw_gpio.c                             |  18 +-
 drivers/gpio/mpc83xx_gpio.c                        |  18 +-
 drivers/gpio/mvgpio.c                              |  18 +-
 drivers/gpio/mvgpio.h                              |  18 +-
 drivers/gpio/mvmfp.c                               |  18 +-
 drivers/gpio/mxc_gpio.c                            |  18 +-
 drivers/gpio/mxs_gpio.c                            |  18 +-
 drivers/gpio/pca9698.c                             |  18 +-
 drivers/gpio/s3c2440_gpio.c                        |  18 +-
 drivers/gpio/s5p_gpio.c                            |  15 +-
 drivers/gpio/sandbox.c                             |  18 +-
 drivers/gpio/spear_gpio.c                          |  18 +-
 drivers/gpio/tegra_gpio.c                          |  18 +-
 drivers/gpio/xilinx_gpio.c                         |  18 +-
 drivers/hwmon/Makefile                             |  18 +-
 drivers/hwmon/adm1021.c                            |  18 +-
 drivers/hwmon/adt7460.c                            |  14 +-
 drivers/hwmon/ds1621.c                             |  18 +-
 drivers/hwmon/ds1775.c                             |  15 +-
 drivers/hwmon/lm63.c                               |  18 +-
 drivers/hwmon/lm73.c                               |  18 +-
 drivers/hwmon/lm75.c                               |  18 +-
 drivers/hwmon/lm81.c                               |  18 +-
 drivers/i2c/Makefile                               |  18 +-
 drivers/i2c/davinci_i2c.c                          |  18 +-
 drivers/i2c/designware_i2c.c                       |  18 +-
 drivers/i2c/designware_i2c.h                       |  18 +-
 drivers/i2c/mv_i2c.c                               |  18 +-
 drivers/i2c/mv_i2c.h                               |  18 +-
 drivers/i2c/mvtwsi.c                               |  18 +-
 drivers/i2c/mxc_i2c.c                              |  18 +-
 drivers/i2c/mxs_i2c.c                              |  15 +-
 drivers/i2c/omap24xx_i2c.h                         |  18 +-
 drivers/i2c/pca9564_i2c.c                          |  15 +-
 drivers/i2c/ppc4xx_i2c.c                           |  18 +-
 drivers/i2c/s3c24x0_i2c.c                          |  18 +-
 drivers/i2c/s3c24x0_i2c.h                          |  18 +-
 drivers/i2c/s3c44b0_i2c.c                          |  18 +-
 drivers/i2c/sh_i2c.c                               |  15 +-
 drivers/i2c/sh_sh7734_i2c.c                        |  15 +-
 drivers/i2c/soft_i2c.c                             |  18 +-
 drivers/i2c/tegra_i2c.c                            |  18 +-
 drivers/i2c/tsi108_i2c.c                           |  19 +-
 drivers/i2c/u8500_i2c.c                            |  14 +-
 drivers/i2c/u8500_i2c.h                            |  18 +-
 drivers/i2c/zynq_i2c.c                             |  18 +-
 drivers/input/Makefile                             |  18 +-
 drivers/input/cros_ec_keyb.c                       |  17 +-
 drivers/input/i8042.c                              |  18 +-
 drivers/input/input.c                              |  18 +-
 drivers/input/key_matrix.c                         |  18 +-
 drivers/input/tegra-kbc.c                          |  18 +-
 drivers/misc/Makefile                              |  18 +-
 drivers/misc/ali512x.c                             |  18 +-
 drivers/misc/cros_ec.c                             |  17 +-
 drivers/misc/cros_ec_i2c.c                         |  17 +-
 drivers/misc/cros_ec_lpc.c                         |  17 +-
 drivers/misc/cros_ec_spi.c                         |  17 +-
 drivers/misc/fsl_iim.c                             |  18 +-
 drivers/misc/mc9sdz60.c                            |  18 +-
 drivers/misc/mxc_ocotp.c                           |  18 +-
 drivers/misc/ns87308.c                             |  18 +-
 drivers/misc/pdsp188x.c                            |  14 +-
 drivers/misc/status_led.c                          |  18 +-
 drivers/misc/twl4030_led.c                         |  16 +-
 drivers/mmc/Makefile                               |  18 +-
 drivers/mmc/arm_pl180_mmci.c                       |  15 +-
 drivers/mmc/arm_pl180_mmci.h                       |  15 +-
 drivers/mmc/davinci_mmc.c                          |  14 +-
 drivers/mmc/dw_mmc.c                               |  15 +-
 drivers/mmc/exynos_dw_mmc.c                        |  15 +-
 drivers/mmc/fsl_esdhc.c                            |  18 +-
 drivers/mmc/ftsdc010_mci.c                         |   3 +-
 drivers/mmc/gen_atmel_mci.c                        |  18 +-
 drivers/mmc/mmc.c                                  |  18 +-
 drivers/mmc/mxsmmc.c                               |  18 +-
 drivers/mmc/pxa_mmc_gen.c                          |  15 +-
 drivers/mmc/s5p_sdhci.c                            |  14 +-
 drivers/mmc/sdhci.c                                |  18 +-
 drivers/mmc/spear_sdhci.c                          |  14 +-
 drivers/mmc/tegra_mmc.c                            |  14 +-
 drivers/mmc/zynq_sdhci.c                           |   9 +-
 drivers/mtd/Makefile                               |  18 +-
 drivers/mtd/at45.c                                 |  16 +-
 drivers/mtd/cfi_flash.c                            |  19 +-
 drivers/mtd/cfi_mtd.c                              |  19 +-
 drivers/mtd/dataflash.c                            |  19 +-
 drivers/mtd/ftsmc020.c                             |  14 +-
 drivers/mtd/jedec_flash.c                          |  19 +-
 drivers/mtd/nand/Makefile                          |  18 +-
 drivers/mtd/nand/am335x_spl_bch.c                  |  14 +-
 drivers/mtd/nand/atmel_nand.c                      |  18 +-
 drivers/mtd/nand/atmel_nand_ecc.h                  |   5 +-
 drivers/mtd/nand/davinci_nand.c                    |  14 +-
 drivers/mtd/nand/docg4.c                           |   4 +-
 drivers/mtd/nand/docg4_spl.c                       |   4 +-
 drivers/mtd/nand/fsl_elbc_nand.c                   |  14 +-
 drivers/mtd/nand/fsl_elbc_spl.c                    |  15 +-
 drivers/mtd/nand/fsl_ifc_nand.c                    |  14 +-
 drivers/mtd/nand/fsl_ifc_spl.c                     |  15 +-
 drivers/mtd/nand/fsl_upm.c                         |   5 +-
 drivers/mtd/nand/fsmc_nand.c                       |  18 +-
 drivers/mtd/nand/jz4740_nand.c                     |   5 +-
 drivers/mtd/nand/kb9202_nand.c                     |  18 +-
 drivers/mtd/nand/kirkwood_nand.c                   |  18 +-
 drivers/mtd/nand/kmeter1_nand.c                    |  18 +-
 drivers/mtd/nand/mpc5121_nfc.c                     |  14 +-
 drivers/mtd/nand/mxc_nand.c                        |  14 +-
 drivers/mtd/nand/mxc_nand.h                        |  18 +-
 drivers/mtd/nand/mxc_nand_spl.c                    |  15 +-
 drivers/mtd/nand/mxs_nand.c                        |  14 +-
 drivers/mtd/nand/nand_bch.c                        |  14 +-
 drivers/mtd/nand/nand_ecc.c                        |  14 +-
 drivers/mtd/nand/nand_spl_load.c                   |  15 +-
 drivers/mtd/nand/nand_spl_simple.c                 |  15 +-
 drivers/mtd/nand/nand_util.c                       |  24 +-
 drivers/mtd/nand/ndfc.c                            |  18 +-
 drivers/mtd/nand/nomadik.c                         |  18 +-
 drivers/mtd/nand/omap_gpmc.c                       |  18 +-
 drivers/mtd/nand/s3c2410_nand.c                    |  15 +-
 drivers/mtd/nand/tegra_nand.c                      |  18 +-
 drivers/mtd/nand/tegra_nand.h                      |  18 +-
 drivers/mtd/onenand/Makefile                       |  18 +-
 drivers/mtd/onenand/onenand_spl.c                  |  18 +-
 drivers/mtd/onenand/samsung.c                      |  18 +-
 drivers/mtd/spi/Makefile                           |  18 +-
 drivers/mtd/spi/eeprom_m95xxx.c                    |  18 +-
 drivers/mtd/spi/gigadevice.c                       |  18 +-
 drivers/mtd/spi/macronix.c                         |  18 +-
 drivers/mtd/spi/ramtron.c                          |  18 +-
 drivers/mtd/spi/spansion.c                         |  18 +-
 drivers/mtd/spi/spi_spl_load.c                     |  15 +-
 drivers/mtd/spi/stmicro.c                          |  18 +-
 drivers/mtd/st_smi.c                               |  18 +-
 drivers/mtd/ubi/Makefile                           |  18 +-
 drivers/mtd/ubi/build.c                            |  14 +-
 drivers/mtd/ubi/debug.c                            |  14 +-
 drivers/mtd/ubi/debug.h                            |  14 +-
 drivers/mtd/ubi/eba.c                              |  14 +-
 drivers/mtd/ubi/io.c                               |  14 +-
 drivers/mtd/ubi/kapi.c                             |  14 +-
 drivers/mtd/ubi/misc.c                             |  14 +-
 drivers/mtd/ubi/scan.c                             |  14 +-
 drivers/mtd/ubi/scan.h                             |  14 +-
 drivers/mtd/ubi/ubi-media.h                        |  14 +-
 drivers/mtd/ubi/ubi.h                              |  14 +-
 drivers/mtd/ubi/upd.c                              |  14 +-
 drivers/mtd/ubi/vmt.c                              |  14 +-
 drivers/mtd/ubi/vtbl.c                             |  14 +-
 drivers/mtd/ubi/wl.c                               |  14 +-
 drivers/net/Makefile                               |  18 +-
 drivers/net/armada100_fec.c                        |  18 +-
 drivers/net/armada100_fec.h                        |  18 +-
 drivers/net/at91_emac.c                            |  18 +-
 drivers/net/ax88796.c                              |  14 +-
 drivers/net/ax88796.h                              |  16 +-
 drivers/net/calxedaxgmac.c                         |  14 +-
 drivers/net/cs8900.c                               |  17 +-
 drivers/net/cs8900.h                               |  17 +-
 drivers/net/davinci_emac.c                         |  16 +-
 drivers/net/davinci_emac.h                         |  14 +-
 drivers/net/dc2114x.c                              |  18 +-
 drivers/net/designware.c                           |  18 +-
 drivers/net/designware.h                           |  18 +-
 drivers/net/dm9000x.c                              |  10 +-
 drivers/net/e1000.c                                |  17 +-
 drivers/net/e1000.h                                |  17 +-
 drivers/net/eepro100.c                             |  18 +-
 drivers/net/enc28j60.c                             |  15 +-
 drivers/net/enc28j60.h                             |  15 +-
 drivers/net/ep93xx_eth.c                           |  16 +-
 drivers/net/ep93xx_eth.h                           |  19 +-
 drivers/net/fec_mxc.c                              |  15 +-
 drivers/net/fec_mxc.h                              |  16 +-
 drivers/net/fm/Makefile                            |  18 +-
 drivers/net/fm/b4860.c                             |  15 +-
 drivers/net/fm/dtsec.c                             |  15 +-
 drivers/net/fm/eth.c                               |  15 +-
 drivers/net/fm/fm.c                                |  15 +-
 drivers/net/fm/fm.h                                |  15 +-
 drivers/net/fm/init.c                              |  15 +-
 drivers/net/fm/memac.c                             |  15 +-
 drivers/net/fm/memac_phy.c                         |  15 +-
 drivers/net/fm/p1023.c                             |  15 +-
 drivers/net/fm/p4080.c                             |  15 +-
 drivers/net/fm/p5020.c                             |  15 +-
 drivers/net/fm/p5040.c                             |  15 +-
 drivers/net/fm/t4240.c                             |  15 +-
 drivers/net/fm/tgec.c                              |  15 +-
 drivers/net/fm/tgec_phy.c                          |  15 +-
 drivers/net/fsl_mcdmafec.c                         |  18 +-
 drivers/net/fsl_mdio.c                             |  15 +-
 drivers/net/ftgmac100.c                            |  14 +-
 drivers/net/ftgmac100.h                            |  14 +-
 drivers/net/ftmac100.c                             |  14 +-
 drivers/net/ftmac100.h                             |  14 +-
 drivers/net/ftmac110.c                             |   3 +-
 drivers/net/ftmac110.h                             |   3 +-
 drivers/net/greth.c                                |  18 +-
 drivers/net/greth.h                                |  18 +-
 drivers/net/inca-ip_sw.c                           |  18 +-
 drivers/net/ks8695eth.c                            |  14 +-
 drivers/net/ks8851_mll.c                           |  14 +-
 drivers/net/lan91c96.c                             |  15 +-
 drivers/net/lan91c96.h                             |  14 +-
 drivers/net/macb.c                                 |  14 +-
 drivers/net/macb.h                                 |  18 +-
 drivers/net/mcffec.c                               |  18 +-
 drivers/net/mcfmii.c                               |  18 +-
 drivers/net/mvgbe.c                                |  18 +-
 drivers/net/mvgbe.h                                |  18 +-
 drivers/net/netconsole.c                           |  18 +-
 drivers/net/npe/Makefile                           |  18 +-
 drivers/net/npe/include/npe.h                      |  18 +-
 drivers/net/npe/npe.c                              |  18 +-
 drivers/net/pcnet.c                                |  18 +-
 drivers/net/phy/Makefile                           |  18 +-
 drivers/net/phy/atheros.c                          |  16 +-
 drivers/net/phy/broadcom.c                         |  16 +-
 drivers/net/phy/davicom.c                          |  16 +-
 drivers/net/phy/et1011c.c                          |  11 +-
 drivers/net/phy/generic_10g.c                      |  16 +-
 drivers/net/phy/icplus.c                           |  16 +-
 drivers/net/phy/lxt.c                              |  16 +-
 drivers/net/phy/marvell.c                          |  16 +-
 drivers/net/phy/micrel.c                           |  16 +-
 drivers/net/phy/miiphybb.c                         |  18 +-
 drivers/net/phy/mv88e61xx.c                        |  18 +-
 drivers/net/phy/mv88e61xx.h                        |  18 +-
 drivers/net/phy/mv88e6352.c                        |  18 +-
 drivers/net/phy/natsemi.c                          |  16 +-
 drivers/net/phy/phy.c                              |  16 +-
 drivers/net/phy/realtek.c                          |  16 +-
 drivers/net/phy/smsc.c                             |  16 +-
 drivers/net/phy/teranetics.c                       |  16 +-
 drivers/net/phy/vitesse.c                          |  15 +-
 drivers/net/plb2800_eth.c                          |  18 +-
 drivers/net/rtl8169.c                              |  14 +-
 drivers/net/sh_eth.c                               |  14 +-
 drivers/net/sh_eth.h                               |  14 +-
 drivers/net/smc91111.c                             |  14 +-
 drivers/net/smc91111.h                             |  14 +-
 drivers/net/smc911x.c                              |  18 +-
 drivers/net/smc911x.h                              |  18 +-
 drivers/net/sunxi_wemac.c                          |  10 +-
 drivers/net/tsi108_eth.c                           |  18 +-
 drivers/net/uli526x.c                              |   5 +-
 drivers/net/xilinx_axi_emac.c                      |  18 +-
 drivers/net/xilinx_emaclite.c                      |  18 +-
 drivers/net/xilinx_ll_temac.c                      |   5 +-
 drivers/net/xilinx_ll_temac.h                      |   5 +-
 drivers/net/xilinx_ll_temac_fifo.c                 |   5 +-
 drivers/net/xilinx_ll_temac_fifo.h                 |   5 +-
 drivers/net/xilinx_ll_temac_mdio.c                 |   5 +-
 drivers/net/xilinx_ll_temac_mdio.h                 |   5 +-
 drivers/net/xilinx_ll_temac_sdma.c                 |   5 +-
 drivers/net/xilinx_ll_temac_sdma.h                 |   5 +-
 drivers/net/zynq_gem.c                             |  18 +-
 drivers/pci/Makefile                               |  18 +-
 drivers/pci/fsl_pci_init.c                         |  15 +-
 drivers/pci/pci.c                                  |  18 +-
 drivers/pci/pci_auto.c                             |   5 +-
 drivers/pci/pci_ftpci100.c                         |  14 +-
 drivers/pci/pci_ftpci100.h                         |  14 +-
 drivers/pci/pci_indirect.c                         |   5 +-
 drivers/pci/pci_ixp.c                              |  18 +-
 drivers/pci/pci_sh4.c                              |  18 +-
 drivers/pci/pci_sh7751.c                           |  18 +-
 drivers/pci/pci_sh7780.c                           |  18 +-
 drivers/pci/tsi108_pci.c                           |  18 +-
 drivers/pci/w83c553f.c                             |  18 +-
 drivers/pcmcia/Makefile                            |  18 +-
 drivers/pcmcia/i82365.c                            |  19 +-
 drivers/pcmcia/marubun_pcmcia.c                    |  16 +-
 drivers/pcmcia/ti_pci1410a.c                       |  18 +-
 drivers/power/Makefile                             |  18 +-
 drivers/power/battery/Makefile                     |  18 +-
 drivers/power/battery/bat_trats.c                  |  18 +-
 drivers/power/ftpmu010.c                           |  14 +-
 drivers/power/fuel_gauge/Makefile                  |  18 +-
 drivers/power/fuel_gauge/fg_max17042.c             |  18 +-
 drivers/power/palmas.c                             |  18 +-
 drivers/power/pmic/Makefile                        |  18 +-
 drivers/power/pmic/muic_max8997.c                  |  18 +-
 drivers/power/pmic/pmic_max77686.c                 |  18 +-
 drivers/power/pmic/pmic_max8997.c                  |  18 +-
 drivers/power/pmic/pmic_max8998.c                  |  18 +-
 drivers/power/power_core.c                         |  18 +-
 drivers/power/power_dialog.c                       |  13 +-
 drivers/power/power_fsl.c                          |  18 +-
 drivers/power/power_i2c.c                          |  18 +-
 drivers/power/power_spi.c                          |  18 +-
 drivers/power/tps6586x.c                           |  18 +-
 drivers/power/twl4030.c                            |  16 +-
 drivers/power/twl6030.c                            |  18 +-
 drivers/qe/Makefile                                |  18 +-
 drivers/qe/fdt.c                                   |  18 +-
 drivers/qe/qe.c                                    |  15 +-
 drivers/qe/qe.h                                    |  15 +-
 drivers/qe/uccf.c                                  |  15 +-
 drivers/qe/uccf.h                                  |  15 +-
 drivers/qe/uec.c                                   |  15 +-
 drivers/qe/uec.h                                   |  15 +-
 drivers/qe/uec_phy.c                               |   6 +-
 drivers/qe/uec_phy.h                               |   6 +-
 drivers/rtc/Makefile                               |  18 +-
 drivers/rtc/at91sam9_rtt.c                         |  18 +-
 drivers/rtc/date.c                                 |  18 +-
 drivers/rtc/davinci.c                              |  18 +-
 drivers/rtc/ds12887.c                              |  15 +-
 drivers/rtc/ds1306.c                               |  18 +-
 drivers/rtc/ds1307.c                               |  18 +-
 drivers/rtc/ds1337.c                               |  18 +-
 drivers/rtc/ds1374.c                               |  18 +-
 drivers/rtc/ds1556.c                               |  18 +-
 drivers/rtc/ds164x.c                               |  18 +-
 drivers/rtc/ds174x.c                               |  18 +-
 drivers/rtc/ds3231.c                               |  18 +-
 drivers/rtc/ftrtc010.c                             |  14 +-
 drivers/rtc/imxdi.c                                |  18 +-
 drivers/rtc/isl1208.c                              |  15 +-
 drivers/rtc/m41t11.c                               |  15 +-
 drivers/rtc/m41t60.c                               |  15 +-
 drivers/rtc/m41t62.c                               |  15 +-
 drivers/rtc/m48t35ax.c                             |  18 +-
 drivers/rtc/max6900.c                              |  18 +-
 drivers/rtc/mc13xxx-rtc.c                          |  18 +-
 drivers/rtc/mc146818.c                             |  18 +-
 drivers/rtc/mcfrtc.c                               |  18 +-
 drivers/rtc/mk48t59.c                              |  18 +-
 drivers/rtc/mpc5xxx.c                              |  18 +-
 drivers/rtc/mpc8xx.c                               |  18 +-
 drivers/rtc/mvrtc.c                                |  18 +-
 drivers/rtc/mvrtc.h                                |  18 +-
 drivers/rtc/mx27rtc.c                              |  15 +-
 drivers/rtc/mxsrtc.c                               |  15 +-
 drivers/rtc/pcf8563.c                              |  18 +-
 drivers/rtc/pl031.c                                |  18 +-
 drivers/rtc/pt7c4338.c                             |  18 +-
 drivers/rtc/rs5c372.c                              |  12 +-
 drivers/rtc/rtc4543.c                              |  18 +-
 drivers/rtc/rv3029.c                               |  18 +-
 drivers/rtc/rx8025.c                               |  18 +-
 drivers/rtc/s3c24x0_rtc.c                          |  18 +-
 drivers/rtc/s3c44b0_rtc.c                          |  18 +-
 drivers/rtc/x1205.c                                |  18 +-
 drivers/serial/Makefile                            |  18 +-
 drivers/serial/altera_jtag_uart.c                  |  18 +-
 drivers/serial/altera_uart.c                       |  18 +-
 drivers/serial/atmel_usart.c                       |  14 +-
 drivers/serial/atmel_usart.h                       |  14 +-
 drivers/serial/lpc32xx_hsuart.c                    |  15 +-
 drivers/serial/mcfuart.c                           |  19 +-
 drivers/serial/opencores_yanu.c                    |  18 +-
 drivers/serial/sandbox.c                           |  17 +-
 drivers/serial/serial.c                            |  18 +-
 drivers/serial/serial_imx.c                        |  15 +-
 drivers/serial/serial_ixp.c                        |  15 +-
 drivers/serial/serial_ks8695.c                     |  14 +-
 drivers/serial/serial_lpuart.c                     |  15 +-
 drivers/serial/serial_max3100.c                    |  18 +-
 drivers/serial/serial_mxc.c                        |  15 +-
 drivers/serial/serial_ns16550.c                    |  18 +-
 drivers/serial/serial_pl01x.c                      |  18 +-
 drivers/serial/serial_pl01x.h                      |  18 +-
 drivers/serial/serial_pxa.c                        |  15 +-
 drivers/serial/serial_s3c24x0.c                    |  15 +-
 drivers/serial/serial_s3c44b0.c                    |  27 +-
 drivers/serial/serial_s5p.c                        |  15 +-
 drivers/serial/serial_sa1100.c                     |  15 +-
 drivers/serial/serial_sh.c                         |  14 +-
 drivers/serial/serial_xuartlite.c                  |  18 +-
 drivers/serial/serial_zynq.c                       |  18 +-
 drivers/serial/usbtty.c                            |  15 +-
 drivers/serial/usbtty.h                            |  15 +-
 drivers/sound/Makefile                             |  18 +-
 drivers/sound/samsung-i2s.c                        |  18 +-
 drivers/sound/sound.c                              |  18 +-
 drivers/sound/wm8994.c                             |  18 +-
 drivers/sound/wm8994.h                             |  18 +-
 drivers/sound/wm8994_registers.h                   |   6 +-
 drivers/spi/Makefile                               |  18 +-
 drivers/spi/andes_spi.c                            |  18 +-
 drivers/spi/andes_spi.h                            |  15 +-
 drivers/spi/armada100_spi.c                        |  18 +-
 drivers/spi/atmel_dataflash_spi.c                  |  16 +-
 drivers/spi/atmel_spi.c                            |  18 +-
 drivers/spi/cf_qspi.c                              |  18 +-
 drivers/spi/cf_spi.c                               |  18 +-
 drivers/spi/davinci_spi.c                          |  18 +-
 drivers/spi/davinci_spi.h                          |  15 +-
 drivers/spi/exynos_spi.c                           |  14 +-
 drivers/spi/fsl_espi.c                             |  15 +-
 drivers/spi/ich.c                                  |  15 +-
 drivers/spi/ich.h                                  |  18 +-
 drivers/spi/kirkwood_spi.c                         |  18 +-
 drivers/spi/mpc52xx_spi.c                          |  18 +-
 drivers/spi/mpc8xxx_spi.c                          |  18 +-
 drivers/spi/mxc_spi.c                              |  16 +-
 drivers/spi/mxs_spi.c                              |  15 +-
 drivers/spi/omap3_spi.c                            |  19 +-
 drivers/spi/omap3_spi.h                            |  18 +-
 drivers/spi/soft_spi.c                             |  18 +-
 drivers/spi/spi.c                                  |  15 +-
 drivers/spi/tegra20_sflash.c                       |  18 +-
 drivers/tpm/Makefile                               |  18 +-
 drivers/tpm/tpm_tis_lpc.c                          |  18 +-
 drivers/twserial/Makefile                          |  18 +-
 drivers/twserial/soft_tws.c                        |  19 +-
 drivers/usb/eth/Makefile                           |  18 +-
 drivers/usb/eth/asix.c                             |  17 +-
 drivers/usb/eth/smsc95xx.c                         |  17 +-
 drivers/usb/eth/usb_ether.c                        |  17 +-
 drivers/usb/gadget/Makefile                        |  18 +-
 drivers/usb/gadget/composite.c                     |  14 +-
 drivers/usb/gadget/config.c                        |  14 +-
 drivers/usb/gadget/core.c                          |  15 +-
 drivers/usb/gadget/designware_udc.c                |  18 +-
 drivers/usb/gadget/ep0.c                           |  15 +-
 drivers/usb/gadget/ep0.h                           |  15 +-
 drivers/usb/gadget/epautoconf.c                    |  14 +-
 drivers/usb/gadget/ether.c                         |  14 +-
 drivers/usb/gadget/f_dfu.c                         |  14 +-
 drivers/usb/gadget/f_dfu.h                         |  14 +-
 drivers/usb/gadget/fotg210.c                       |   3 +-
 drivers/usb/gadget/g_dnl.c                         |  14 +-
 drivers/usb/gadget/mpc8xx_udc.c                    |  16 +-
 drivers/usb/gadget/mv_udc.c                        |  18 +-
 drivers/usb/gadget/omap1510_udc.c                  |  15 +-
 drivers/usb/gadget/pxa25x_udc.c                    |  14 +-
 drivers/usb/gadget/pxa25x_udc.h                    |  14 +-
 drivers/usb/gadget/pxa27x_udc.c                    |  16 +-
 drivers/usb/gadget/regs-otg.h                      |   5 +-
 drivers/usb/gadget/s3c_udc_otg.c                   |  15 +-
 drivers/usb/gadget/s3c_udc_otg_xfer_dma.c          |  15 +-
 drivers/usb/gadget/storage_common.c                |  14 +-
 drivers/usb/gadget/usbstring.c                     |   5 +-
 drivers/usb/host/Makefile                          |  18 +-
 drivers/usb/host/ehci-armada100.c                  |  18 +-
 drivers/usb/host/ehci-atmel.c                      |  18 +-
 drivers/usb/host/ehci-exynos.c                     |  15 +-
 drivers/usb/host/ehci-faraday.c                    |   3 +-
 drivers/usb/host/ehci-fsl.c                        |  15 +-
 drivers/usb/host/ehci-ixp4xx.c                     |  15 +-
 drivers/usb/host/ehci-marvell.c                    |  18 +-
 drivers/usb/host/ehci-mpc512x.c                    |  15 +-
 drivers/usb/host/ehci-mx5.c                        |  10 +-
 drivers/usb/host/ehci-mx6.c                        |  10 +-
 drivers/usb/host/ehci-mxc.c                        |  14 +-
 drivers/usb/host/ehci-mxs.c                        |  14 +-
 drivers/usb/host/ehci-omap.c                       |  18 +-
 drivers/usb/host/ehci-ppc4xx.c                     |  15 +-
 drivers/usb/host/ehci-spear.c                      |  18 +-
 drivers/usb/host/ehci-tegra.c                      |  18 +-
 drivers/usb/host/ehci-vct.c                        |  15 +-
 drivers/usb/host/isp116x-hcd.c                     |  16 +-
 drivers/usb/host/isp116x.h                         |  15 +-
 drivers/usb/host/ohci-at91.c                       |  18 +-
 drivers/usb/host/ohci-da8xx.c                      |  10 +-
 drivers/usb/host/ohci-hcd.c                        |  19 +-
 drivers/usb/host/ohci-s3c24xx.c                    |  19 +-
 drivers/usb/host/sl811-hcd.c                       |  18 +-
 drivers/usb/host/utmi-armada100.c                  |  18 +-
 drivers/usb/musb/Makefile                          |  18 +-
 drivers/usb/musb/am35x.c                           |  15 +-
 drivers/usb/musb/am35x.h                           |  14 +-
 drivers/usb/musb/da8xx.c                           |  14 +-
 drivers/usb/musb/davinci.c                         |  15 +-
 drivers/usb/musb/davinci.h                         |  15 +-
 drivers/usb/musb/musb_core.c                       |  15 +-
 drivers/usb/musb/musb_debug.h                      |  15 +-
 drivers/usb/musb/musb_hcd.c                        |  15 +-
 drivers/usb/musb/musb_hcd.h                        |  15 +-
 drivers/usb/musb/musb_udc.c                        |  15 +-
 drivers/usb/musb/omap3.c                           |  15 +-
 drivers/usb/musb/omap3.h                           |  15 +-
 drivers/usb/phy/Makefile                           |  15 +-
 drivers/usb/phy/twl4030.c                          |  15 +-
 drivers/usb/ulpi/Makefile                          |  16 +-
 drivers/usb/ulpi/ulpi.c                            |  10 +-
 drivers/video/Makefile                             |  18 +-
 drivers/video/ati_radeon_fb.c                      |  19 +-
 drivers/video/atmel_hlcdfb.c                       |  18 +-
 drivers/video/atmel_lcdfb.c                        |  18 +-
 drivers/video/bcm2835.c                            |  13 +-
 drivers/video/bus_vcxk.c                           |  18 +-
 drivers/video/cfb_console.c                        |  18 +-
 drivers/video/coreboot_fb.c                        |  18 +-
 drivers/video/ct69000.c                            |  18 +-
 drivers/video/da8xx-fb.c                           |  14 +-
 drivers/video/exynos_dp.c                          |  15 +-
 drivers/video/exynos_dp_lowlevel.c                 |  15 +-
 drivers/video/exynos_dp_lowlevel.h                 |  15 +-
 drivers/video/exynos_fb.c                          |  15 +-
 drivers/video/exynos_fb.h                          |  15 +-
 drivers/video/exynos_fimd.c                        |  15 +-
 drivers/video/exynos_mipi_dsi.c                    |  15 +-
 drivers/video/exynos_mipi_dsi_common.c             |  15 +-
 drivers/video/exynos_mipi_dsi_common.h             |  15 +-
 drivers/video/exynos_mipi_dsi_lowlevel.c           |  15 +-
 drivers/video/exynos_mipi_dsi_lowlevel.h           |  15 +-
 drivers/video/exynos_pwm_bl.c                      |  14 +-
 drivers/video/fsl_diu_fb.c                         |  18 +-
 drivers/video/ipu.h                                |  18 +-
 drivers/video/ipu_common.c                         |  18 +-
 drivers/video/ipu_disp.c                           |  18 +-
 drivers/video/ipu_regs.h                           |  18 +-
 drivers/video/ld9040.c                             |  18 +-
 drivers/video/mb862xx.c                            |  18 +-
 drivers/video/mb86r0xgdc.c                         |  18 +-
 drivers/video/mpc8xx_lcd.c                         |  18 +-
 drivers/video/mx3fb.c                              |  18 +-
 drivers/video/mxc_ipuv3_fb.c                       |  18 +-
 drivers/video/mxcfb.h                              |  18 +-
 drivers/video/mxsfb.c                              |  15 +-
 drivers/video/pxa_lcd.c                            |  18 +-
 drivers/video/s6e63d6.c                            |  18 +-
 drivers/video/s6e8ax0.c                            |  15 +-
 drivers/video/sed13806.c                           |  18 +-
 drivers/video/sed156x.c                            |  18 +-
 drivers/video/sm501.c                              |  18 +-
 drivers/video/smiLynxEM.c                          |  18 +-
 drivers/video/tegra.c                              |  18 +-
 drivers/video/videomodes.c                         |  18 +-
 drivers/video/videomodes.h                         |  18 +-
 drivers/watchdog/Makefile                          |  18 +-
 drivers/watchdog/at91sam9_wdt.c                    |   5 +-
 drivers/watchdog/ftwdt010_wdt.c                    |  14 +-
 drivers/watchdog/s5p_wdt.c                         |  18 +-
 drivers/watchdog/tnetv107x_wdt.c                   |  17 +-
 drivers/watchdog/xilinx_tb_wdt.c                   |  18 +-
 dts/Makefile                                       |  18 +-
 examples/api/Makefile                              |  18 +-
 examples/api/crt0.S                                |  19 +-
 examples/api/demo.c                                |  19 +-
 examples/api/glue.c                                |  19 +-
 examples/api/glue.h                                |  19 +-
 examples/api/libgenwrap.c                          |  20 +-
 examples/standalone/Makefile                       |  18 +-
 examples/standalone/hello_world.c                  |  18 +-
 examples/standalone/interrupt.c                    |  18 +-
 examples/standalone/mips.lds                       |  18 +-
 examples/standalone/mips64.lds                     |  18 +-
 examples/standalone/nds32.lds                      |  18 +-
 examples/standalone/ppc_longjmp.S                  |  16 +-
 examples/standalone/ppc_setjmp.S                   |  16 +-
 examples/standalone/sched.c                        |  15 +-
 examples/standalone/smc91111_eeprom.c              |  18 +-
 examples/standalone/sparc.lds                      |  18 +-
 examples/standalone/test_burst.c                   |  18 +-
 examples/standalone/test_burst.h                   |  18 +-
 examples/standalone/test_burst_lib.S               |  18 +-
 examples/standalone/timer.c                        |  18 +-
 fs/Makefile                                        |  18 +-
 fs/cbfs/Makefile                                   |  15 +-
 fs/cbfs/cbfs.c                                     |  15 +-
 fs/cramfs/Makefile                                 |  18 +-
 fs/ext4/Makefile                                   |  18 +-
 fs/ext4/dev.c                                      |  15 +-
 fs/ext4/ext4_common.c                              |  14 +-
 fs/ext4/ext4_common.h                              |  14 +-
 fs/ext4/ext4_journal.c                             |  18 +-
 fs/ext4/ext4_journal.h                             |  18 +-
 fs/ext4/ext4_write.c                               |  14 +-
 fs/ext4/ext4fs.c                                   |  14 +-
 fs/fat/Makefile                                    |  18 +-
 fs/fat/fat.c                                       |  18 +-
 fs/fat/fat_write.c                                 |  18 +-
 fs/fat/file.c                                      |  18 +-
 fs/fdos/Makefile                                   |  18 +-
 fs/fdos/dev.c                                      |  18 +-
 fs/fdos/dos.h                                      |  18 +-
 fs/fdos/fat.c                                      |  18 +-
 fs/fdos/fdos.c                                     |  18 +-
 fs/fdos/fdos.h                                     |  18 +-
 fs/fdos/fs.c                                       |  18 +-
 fs/fdos/subdir.c                                   |  18 +-
 fs/fdos/vfat.c                                     |  18 +-
 fs/jffs2/Makefile                                  |  18 +-
 fs/jffs2/mini_inflate.c                            |  16 +-
 fs/reiserfs/Makefile                               |  18 +-
 fs/reiserfs/dev.c                                  |  14 +-
 fs/reiserfs/mode_string.c                          |  15 +-
 fs/reiserfs/reiserfs.c                             |  14 +-
 fs/reiserfs/reiserfs_private.h                     |  14 +-
 fs/sandbox/Makefile                                |  15 +-
 fs/sandbox/sandboxfs.c                             |  15 +-
 fs/ubifs/Makefile                                  |  18 +-
 fs/zfs/Makefile                                    |  18 +-
 fs/zfs/dev.c                                       |  14 +-
 fs/zfs/zfs.c                                       |  14 +-
 fs/zfs/zfs_fletcher.c                              |  14 +-
 fs/zfs/zfs_lzjb.c                                  |  14 +-
 fs/zfs/zfs_sha256.c                                |  14 +-
 include/74xx_7xx.h                                 |  18 +-
 include/ACEX1K.h                                   |  19 +-
 include/MCD_dma.h                                  |  18 +-
 include/MCD_progCheck.h                            |  18 +-
 include/MCD_tasksInit.h                            |  18 +-
 include/aes.h                                      |  18 +-
 include/ahci.h                                     |  19 +-
 include/ali512x.h                                  |  18 +-
 include/altera.h                                   |  19 +-
 include/ambapp.h                                   |  19 +-
 include/andestech/andes_pcu.h                      |  14 +-
 include/ansi.h                                     |  18 +-
 include/armcoremodule.h                            |  18 +-
 include/asm-generic/errno.h                        |  18 +-
 include/asm-generic/global_data.h                  |  18 +-
 include/asm-generic/gpio.h                         |  18 +-
 include/asm-generic/sections.h                     |  15 +-
 include/asm-generic/u-boot.h                       |  16 +-
 include/at91rm9200_i2c.h                           |  14 +-
 include/at91rm9200_net.h                           |   5 +-
 include/ata.h                                      |  18 +-
 include/atmel_hlcdc.h                              |  14 +-
 include/atmel_lcdc.h                               |  14 +-
 include/atmel_mci.h                                |  18 +-
 include/bcm5221.h                                  |  18 +-
 include/bmp_layout.h                               |  18 +-
 include/bootcount.h                                |  13 +-
 include/bootstage.h                                |  17 +-
 include/bouncebuf.h                                |  18 +-
 include/bus_vcxk.h                                 |  18 +-
 include/cbfs.h                                     |  15 +-
 include/circbuf.h                                  |  15 +-
 include/cmd_spl.h                                  |  18 +-
 include/command.h                                  |  18 +-
 include/common.h                                   |  18 +-
 include/config_uncmd_spl.h                         |  22 +-
 include/configs/A3000.h                            |  18 +-
 include/configs/APC405.h                           |  18 +-
 include/configs/AR405.h                            |  18 +-
 include/configs/ASH405.h                           |  18 +-
 include/configs/Adder.h                            |  18 +-
 include/configs/AdderUSB.h                         |  18 +-
 include/configs/B4860QDS.h                         |  18 +-
 include/configs/BC3450.h                           |  18 +-
 include/configs/BSC9131RDB.h                       |  18 +-
 include/configs/BSC9132QDS.h                       |  18 +-
 include/configs/CANBT.h                            |  18 +-
 include/configs/CATcenter.h                        |  15 +-
 include/configs/CMS700.h                           |  18 +-
 include/configs/CPC45.h                            |  18 +-
 include/configs/CPCI2DP.h                          |  18 +-
 include/configs/CPCI405.h                          |  18 +-
 include/configs/CPCI4052.h                         |  18 +-
 include/configs/CPCI405AB.h                        |  18 +-
 include/configs/CPCI405DT.h                        |  18 +-
 include/configs/CPCI750.h                          |  18 +-
 include/configs/CPCIISER4.h                        |  18 +-
 include/configs/CPU86.h                            |  18 +-
 include/configs/CPU87.h                            |  18 +-
 include/configs/CRAYL1.h                           |  18 +-
 include/configs/CU824.h                            |  18 +-
 include/configs/DB64360.h                          |  18 +-
 include/configs/DB64460.h                          |  18 +-
 include/configs/DP405.h                            |  18 +-
 include/configs/DU405.h                            |  18 +-
 include/configs/DU440.h                            |  15 +-
 include/configs/ELPPC.h                            |  18 +-
 include/configs/ELPT860.h                          |  15 +-
 include/configs/EP88x.h                            |  18 +-
 include/configs/ESTEEM192E.h                       |  18 +-
 include/configs/EVB64260.h                         |  18 +-
 include/configs/EXBITGEN.h                         |  18 +-
 include/configs/FLAGADM.h                          |  18 +-
 include/configs/FPS850L.h                          |  18 +-
 include/configs/FPS860L.h                          |  18 +-
 include/configs/G2000.h                            |  18 +-
 include/configs/GEN860T.h                          |  18 +-
 include/configs/HH405.h                            |  18 +-
 include/configs/HIDDEN_DRAGON.h                    |  18 +-
 include/configs/HUB405.h                           |  18 +-
 include/configs/HWW1U1A.h                          |  18 +-
 include/configs/ICU862.h                           |  18 +-
 include/configs/IDS8247.h                          |  18 +-
 include/configs/IP860.h                            |  18 +-
 include/configs/IPHASE4539.h                       |  18 +-
 include/configs/ISPAN.h                            |  18 +-
 include/configs/IVML24.h                           |  18 +-
 include/configs/IVMS8.h                            |  18 +-
 include/configs/IceCube.h                          |  18 +-
 include/configs/JSE.h                              |  18 +-
 include/configs/KAREF.h                            |  18 +-
 include/configs/KUP4K.h                            |  18 +-
 include/configs/KUP4X.h                            |  18 +-
 include/configs/M5208EVBE.h                        |  18 +-
 include/configs/M52277EVB.h                        |  18 +-
 include/configs/M5235EVB.h                         |  18 +-
 include/configs/M5249EVB.h                         |  18 +-
 include/configs/M5253DEMO.h                        |  21 +-
 include/configs/M5253EVBE.h                        |  18 +-
 include/configs/M5271EVB.h                         |  18 +-
 include/configs/M5272C3.h                          |  18 +-
 include/configs/M5275EVB.h                         |  18 +-
 include/configs/M5282EVB.h                         |  18 +-
 include/configs/M53017EVB.h                        |  18 +-
 include/configs/M5329EVB.h                         |  18 +-
 include/configs/M5373EVB.h                         |  18 +-
 include/configs/M54418TWR.h                        |  18 +-
 include/configs/M54451EVB.h                        |  18 +-
 include/configs/M54455EVB.h                        |  18 +-
 include/configs/M5475EVB.h                         |  18 +-
 include/configs/M5485EVB.h                         |  18 +-
 include/configs/MBX.h                              |  18 +-
 include/configs/MERGERBOX.h                        |  15 +-
 include/configs/METROBOX.h                         |  18 +-
 include/configs/MHPC.h                             |  18 +-
 include/configs/MIP405.h                           |  18 +-
 include/configs/MOUSSE.h                           |  18 +-
 include/configs/MPC8260ADS.h                       |  18 +-
 include/configs/MPC8266ADS.h                       |  18 +-
 include/configs/MPC8308RDB.h                       |  18 +-
 include/configs/MPC8313ERDB.h                      |  18 +-
 include/configs/MPC8315ERDB.h                      |  18 +-
 include/configs/MPC832XEMDS.h                      |  15 +-
 include/configs/MPC8349EMDS.h                      |  18 +-
 include/configs/MPC8349ITX.h                       |  18 +-
 include/configs/MPC8360EMDS.h                      |  15 +-
 include/configs/MPC8360ERDK.h                      |   5 +-
 include/configs/MPC837XEMDS.h                      |  15 +-
 include/configs/MPC837XERDB.h                      |  15 +-
 include/configs/MPC8536DS.h                        |  18 +-
 include/configs/MPC8540ADS.h                       |  18 +-
 include/configs/MPC8541CDS.h                       |  18 +-
 include/configs/MPC8544DS.h                        |  18 +-
 include/configs/MPC8548CDS.h                       |  18 +-
 include/configs/MPC8555CDS.h                       |  18 +-
 include/configs/MPC8560ADS.h                       |  18 +-
 include/configs/MPC8568MDS.h                       |  18 +-
 include/configs/MPC8569MDS.h                       |  18 +-
 include/configs/MPC8572DS.h                        |  18 +-
 include/configs/MPC8641HPCN.h                      |  18 +-
 include/configs/MUSENKI.h                          |  18 +-
 include/configs/MVBC_P.h                           |  18 +-
 include/configs/MVBLM7.h                           |  18 +-
 include/configs/MVBLUE.h                           |  18 +-
 include/configs/MVS1.h                             |  18 +-
 include/configs/MVSMR.h                            |  18 +-
 include/configs/MigoR.h                            |  18 +-
 include/configs/NETPHONE.h                         |  18 +-
 include/configs/NETTA.h                            |  18 +-
 include/configs/NETTA2.h                           |  18 +-
 include/configs/NETVIA.h                           |  18 +-
 include/configs/NSCU.h                             |  18 +-
 include/configs/NX823.h                            |  18 +-
 include/configs/OCRTC.h                            |  18 +-
 include/configs/ORSG.h                             |  18 +-
 include/configs/P1010RDB.h                         |  18 +-
 include/configs/P1022DS.h                          |   5 +-
 include/configs/P1023RDB.h                         |  18 +-
 include/configs/P1023RDS.h                         |  18 +-
 include/configs/P1_P2_RDB.h                        |  18 +-
 include/configs/P2020COME.h                        |  18 +-
 include/configs/P2020DS.h                          |  18 +-
 include/configs/P2041RDB.h                         |  18 +-
 include/configs/P3041DS.h                          |  18 +-
 include/configs/P3G4.h                             |  18 +-
 include/configs/P4080DS.h                          |  18 +-
 include/configs/P5020DS.h                          |  18 +-
 include/configs/P5040DS.h                          |  18 +-
 include/configs/PATI.h                             |  17 +-
 include/configs/PCI405.h                           |  18 +-
 include/configs/PCI5441.h                          |  18 +-
 include/configs/PIP405.h                           |  18 +-
 include/configs/PK1C20.h                           |  18 +-
 include/configs/PLU405.h                           |  18 +-
 include/configs/PM520.h                            |  18 +-
 include/configs/PM826.h                            |  18 +-
 include/configs/PM828.h                            |  18 +-
 include/configs/PMC405.h                           |  18 +-
 include/configs/PMC405DE.h                         |  18 +-
 include/configs/PMC440.h                           |  15 +-
 include/configs/PN62.h                             |  18 +-
 include/configs/PPChameleonEVB.h                   |  15 +-
 include/configs/QS823.h                            |  18 +-
 include/configs/QS850.h                            |  18 +-
 include/configs/QS860T.h                           |  18 +-
 include/configs/R360MPI.h                          |  18 +-
 include/configs/RBC823.h                           |  18 +-
 include/configs/RPXClassic.h                       |  18 +-
 include/configs/RPXlite.h                          |  18 +-
 include/configs/RPXlite_DW.h                       |  18 +-
 include/configs/RRvision.h                         |  18 +-
 include/configs/Rattler.h                          |  18 +-
 include/configs/SIMPC8313.h                        |  18 +-
 include/configs/SM850.h                            |  18 +-
 include/configs/SPD823TS.h                         |  18 +-
 include/configs/SXNI855T.h                         |  19 +-
 include/configs/Sandpoint8240.h                    |  18 +-
 include/configs/Sandpoint8245.h                    |  18 +-
 include/configs/T4240QDS.h                         |  18 +-
 include/configs/TASREG.h                           |  18 +-
 include/configs/TB5200.h                           |  18 +-
 include/configs/TK885D.h                           |  18 +-
 include/configs/TOP5200.h                          |  18 +-
 include/configs/TOP860.h                           |  18 +-
 include/configs/TQM5200.h                          |  18 +-
 include/configs/TQM823L.h                          |  18 +-
 include/configs/TQM823M.h                          |  18 +-
 include/configs/TQM8260.h                          |  18 +-
 include/configs/TQM8272.h                          |  18 +-
 include/configs/TQM834x.h                          |  18 +-
 include/configs/TQM850L.h                          |  18 +-
 include/configs/TQM850M.h                          |  18 +-
 include/configs/TQM855L.h                          |  18 +-
 include/configs/TQM855M.h                          |  18 +-
 include/configs/TQM860L.h                          |  18 +-
 include/configs/TQM860M.h                          |  18 +-
 include/configs/TQM862L.h                          |  18 +-
 include/configs/TQM862M.h                          |  18 +-
 include/configs/TQM866M.h                          |  18 +-
 include/configs/TQM885D.h                          |  18 +-
 include/configs/Total5200.h                        |  18 +-
 include/configs/VCMA9.h                            |  18 +-
 include/configs/VOH405.h                           |  18 +-
 include/configs/VOM405.h                           |  18 +-
 include/configs/VoVPN-GW.h                         |  15 +-
 include/configs/W7OLMC.h                           |  18 +-
 include/configs/W7OLMG.h                           |  18 +-
 include/configs/WUH405.h                           |  18 +-
 include/configs/ZPC1900.h                          |  18 +-
 include/configs/ZUMA.h                             |  18 +-
 include/configs/a320evb.h                          |  14 +-
 include/configs/a3m071.h                           |  13 +-
 include/configs/a4m072.h                           |  18 +-
 include/configs/ac14xx.h                           |  13 +-
 include/configs/acadia.h                           |  18 +-
 include/configs/actux1.h                           |  18 +-
 include/configs/actux2.h                           |  18 +-
 include/configs/actux3.h                           |  18 +-
 include/configs/actux4.h                           |  18 +-
 include/configs/adp-ag101.h                        |  17 +-
 include/configs/adp-ag101p.h                       |  17 +-
 include/configs/adp-ag102.h                        |  17 +-
 include/configs/aev.h                              |  18 +-
 include/configs/afeb9260.h                         |  18 +-
 include/configs/alpr.h                             |  18 +-
 include/configs/am3517_crane.h                     |  14 +-
 include/configs/am3517_evm.h                       |  14 +-
 include/configs/amcc-common.h                      |  15 +-
 include/configs/ap325rxa.h                         |  18 +-
 include/configs/ap_sh4a_4a.h                       |  14 +-
 include/configs/apx4devkit.h                       |  10 +-
 include/configs/aria.h                             |  18 +-
 include/configs/armadillo-800eva.h                 |  18 +-
 include/configs/aspenite.h                         |  18 +-
 include/configs/astro_mcf5373l.h                   |  18 +-
 include/configs/at91rm9200ek.h                     |  18 +-
 include/configs/at91sam9260ek.h                    |  18 +-
 include/configs/at91sam9261ek.h                    |  18 +-
 include/configs/at91sam9263ek.h                    |  18 +-
 include/configs/at91sam9m10g45ek.h                 |  18 +-
 include/configs/at91sam9n12ek.h                    |  18 +-
 include/configs/at91sam9rlek.h                     |  18 +-
 include/configs/at91sam9x5ek.h                     |  18 +-
 include/configs/atc.h                              |  18 +-
 include/configs/atngw100.h                         |  18 +-
 include/configs/atngw100mkii.h                     |  18 +-
 include/configs/atstk1002.h                        |  18 +-
 include/configs/atstk1003.h                        |  18 +-
 include/configs/atstk1004.h                        |  18 +-
 include/configs/atstk1006.h                        |  18 +-
 include/configs/balloon3.h                         |  15 +-
 include/configs/bamboo.h                           |  18 +-
 include/configs/bluestone.h                        |  15 +-
 include/configs/bubinga.h                          |  18 +-
 include/configs/calimain.h                         |  14 +-
 include/configs/cam_enc_4xx.h                      |  15 +-
 include/configs/canmb.h                            |  18 +-
 include/configs/canyonlands.h                      |  15 +-
 include/configs/cgtqmx6eval.h                      |  15 +-
 include/configs/charon.h                           |  18 +-
 include/configs/cm4008.h                           |  18 +-
 include/configs/cm41xx.h                           |  18 +-
 include/configs/cm5200.h                           |  18 +-
 include/configs/cm_t35.h                           |  17 +-
 include/configs/cmi_mpc5xx.h                       |  17 +-
 include/configs/cobra5272.h                        |  18 +-
 include/configs/cogent_common.h                    |  18 +-
 include/configs/cogent_mpc8260.h                   |  18 +-
 include/configs/cogent_mpc8xx.h                    |  18 +-
 include/configs/colibri_pxa270.h                   |  15 +-
 include/configs/colibri_t20_iris.h                 |  11 +-
 include/configs/coreboot.h                         |  18 +-
 include/configs/corenet_ds.h                       |  18 +-
 include/configs/cpci5200.h                         |  18 +-
 include/configs/cpu9260.h                          |  18 +-
 include/configs/cpuat91.h                          |  18 +-
 include/configs/csb272.h                           |  18 +-
 include/configs/csb472.h                           |  18 +-
 include/configs/da830evm.h                         |  15 +-
 include/configs/da850evm.h                         |  14 +-
 include/configs/davinci_dm355evm.h                 |  15 +-
 include/configs/davinci_dm355leopard.h             |  15 +-
 include/configs/davinci_dm365evm.h                 |  15 +-
 include/configs/davinci_dm6467evm.h                |  15 +-
 include/configs/davinci_dvevm.h                    |  15 +-
 include/configs/davinci_schmoogie.h                |  15 +-
 include/configs/davinci_sffsdr.h                   |  15 +-
 include/configs/davinci_sonata.h                   |  15 +-
 include/configs/dbau1x00.h                         |  18 +-
 include/configs/debris.h                           |  18 +-
 include/configs/devkit3250.h                       |  15 +-
 include/configs/devkit8000.h                       |  18 +-
 include/configs/dig297.h                           |  18 +-
 include/configs/digsy_mtc.h                        |  18 +-
 include/configs/dkb.h                              |  18 +-
 include/configs/dlvision-10g.h                     |  18 +-
 include/configs/dlvision.h                         |  18 +-
 include/configs/dns325.h                           |  18 +-
 include/configs/dockstar.h                         |  18 +-
 include/configs/dra7xx_evm.h                       |  18 +-
 include/configs/dreamplug.h                        |  18 +-
 include/configs/dvlhost.h                          |  18 +-
 include/configs/eXalion.h                          |  18 +-
 include/configs/ea20.h                             |  14 +-
 include/configs/eb_cpu5282.h                       |  18 +-
 include/configs/eb_cpux9k2.h                       |  18 +-
 include/configs/ebony.h                            |  18 +-
 include/configs/eco5pk.h                           |  14 +-
 include/configs/ecovec.h                           |  18 +-
 include/configs/edminiv2.h                         |  18 +-
 include/configs/enbw_cmc.h                         |  14 +-
 include/configs/ep8248.h                           |  18 +-
 include/configs/ep8260.h                           |  18 +-
 include/configs/ep82xxm.h                          |  18 +-
 include/configs/espt.h                             |  18 +-
 include/configs/ethernut5.h                        |  18 +-
 include/configs/exynos5250-dt.h                    |  18 +-
 include/configs/favr-32-ezkit.h                    |  16 +-
 include/configs/flea3.h                            |  15 +-
 include/configs/fx12mm.h                           |  18 +-
 include/configs/galaxy5200.h                       |  18 +-
 include/configs/gdppc440etx.h                      |  18 +-
 include/configs/goflexhome.h                       |  18 +-
 include/configs/gplugd.h                           |  18 +-
 include/configs/gr_cpci_ax2000.h                   |  18 +-
 include/configs/gr_ep2s60.h                        |  18 +-
 include/configs/gr_xc3s_1500.h                     |  18 +-
 include/configs/grasshopper.h                      |  18 +-
 include/configs/grsim.h                            |  18 +-
 include/configs/grsim_leon2.h                      |  18 +-
 include/configs/guruplug.h                         |  18 +-
 include/configs/gw8260.h                           |  18 +-
 include/configs/h2200.h                            |  14 +-
 include/configs/h2_p2_dbg_board.h                  |  20 +-
 include/configs/hammerhead.h                       |  18 +-
 include/configs/harmony.h                          |  18 +-
 include/configs/hawkboard.h                        |  14 +-
 include/configs/hermes.h                           |  18 +-
 include/configs/highbank.h                         |  13 +-
 include/configs/hmi1001.h                          |  18 +-
 include/configs/hymod.h                            |  18 +-
 include/configs/ib62x0.h                           |  16 +-
 include/configs/icon.h                             |  18 +-
 include/configs/iconnect.h                         |  16 +-
 include/configs/idmr.h                             |  18 +-
 include/configs/igep00x0.h                         |  15 +-
 include/configs/ima3-mx53.h                        |  14 +-
 include/configs/imx27lite-common.h                 |  15 +-
 include/configs/imx27lite.h                        |  15 +-
 include/configs/imx31_litekit.h                    |  18 +-
 include/configs/imx31_phycore.h                    |  18 +-
 include/configs/incaip.h                           |  18 +-
 include/configs/inka4x0.h                          |  18 +-
 include/configs/integrator-common.h                |  18 +-
 include/configs/integratorap.h                     |  18 +-
 include/configs/integratorcp.h                     |  18 +-
 include/configs/intip.h                            |  15 +-
 include/configs/io.h                               |  18 +-
 include/configs/io64.h                             |  18 +-
 include/configs/iocon.h                            |  18 +-
 include/configs/ipek01.h                           |  18 +-
 include/configs/jadecpu.h                          |  18 +-
 include/configs/jornada.h                          |  15 +-
 include/configs/jupiter.h                          |  18 +-
 include/configs/katmai.h                           |  18 +-
 include/configs/kilauea.h                          |  18 +-
 include/configs/km/keymile-common.h                |  18 +-
 include/configs/km/km-powerpc.h                    |  18 +-
 include/configs/km/km8309-common.h                 |   5 +-
 include/configs/km/km8321-common.h                 |   5 +-
 include/configs/km/km83xx-common.h                 |   5 +-
 include/configs/km/km_arm.h                        |  18 +-
 include/configs/km82xx.h                           |  18 +-
 include/configs/km8360.h                           |   5 +-
 include/configs/km_kirkwood.h                      |  18 +-
 include/configs/korat.h                            |  15 +-
 include/configs/kvme080.h                          |  18 +-
 include/configs/kzm9g.h                            |  15 +-
 include/configs/lacie_kw.h                         |  13 +-
 include/configs/linkstation.h                      |  15 +-
 include/configs/lp8x4x.h                           |  15 +-
 include/configs/lsxl.h                             |  18 +-
 include/configs/luan.h                             |  18 +-
 include/configs/lubbock.h                          |  18 +-
 include/configs/lwmon.h                            |  18 +-
 include/configs/lwmon5.h                           |  15 +-
 include/configs/m28evk.h                           |  15 +-
 include/configs/m53evk.h                           |  15 +-
 include/configs/magnesium.h                        |  15 +-
 include/configs/makalu.h                           |  18 +-
 include/configs/manroland/common.h                 |  18 +-
 include/configs/manroland/mpc5200-common.h         |  18 +-
 include/configs/mcc200.h                           |  18 +-
 include/configs/mcx.h                              |  14 +-
 include/configs/mecp5123.h                         |  19 +-
 include/configs/mecp5200.h                         |  18 +-
 include/configs/medcom-wide.h                      |  18 +-
 include/configs/meesc.h                            |  18 +-
 include/configs/microblaze-generic.h               |  18 +-
 include/configs/mimc200.h                          |  18 +-
 include/configs/mini2440.h                         |  18 +-
 include/configs/ml507.h                            |  14 +-
 include/configs/motionpro.h                        |  18 +-
 include/configs/mpc5121-common.h                   |  15 +-
 include/configs/mpc5121ads.h                       |  18 +-
 include/configs/mpc7448hpc2.h                      |  18 +-
 include/configs/mpc8308_p1m.h                      |  18 +-
 include/configs/mpq101.h                           |  18 +-
 include/configs/mpr2.h                             |  18 +-
 include/configs/ms7720se.h                         |  18 +-
 include/configs/ms7722se.h                         |  18 +-
 include/configs/ms7750se.h                         |  18 +-
 include/configs/mt_ventoux.h                       |  14 +-
 include/configs/muas3001.h                         |  18 +-
 include/configs/mucmc52.h                          |  18 +-
 include/configs/munices.h                          |  18 +-
 include/configs/mv-common.h                        |  18 +-
 include/configs/mv88f6281gtw_ge.h                  |  18 +-
 include/configs/mx1ads.h                           |  15 +-
 include/configs/mx23_olinuxino.h                   |  15 +-
 include/configs/mx23evk.h                          |  15 +-
 include/configs/mx25pdk.h                          |  10 +-
 include/configs/mx28evk.h                          |  10 +-
 include/configs/mx31ads.h                          |  15 +-
 include/configs/mx31pdk.h                          |  18 +-
 include/configs/mx35pdk.h                          |  15 +-
 include/configs/mx51_efikamx.h                     |  15 +-
 include/configs/mx51evk.h                          |  15 +-
 include/configs/mx53ard.h                          |  15 +-
 include/configs/mx53evk.h                          |  15 +-
 include/configs/mx53loco.h                         |  15 +-
 include/configs/mx53smd.h                          |  15 +-
 include/configs/mx6qarm2.h                         |  15 +-
 include/configs/mx6qsabre_common.h                 |  10 +-
 include/configs/mx6qsabreauto.h                    |   5 +-
 include/configs/mx6qsabrelite.h                    |  15 +-
 include/configs/mx6qsabresd.h                      |  10 +-
 include/configs/mx6slevk.h                         |   5 +-
 include/configs/neo.h                              |  18 +-
 include/configs/nhk8815.h                          |  18 +-
 include/configs/nios2-generic.h                    |  18 +-
 include/configs/nitrogen6x.h                       |  15 +-
 include/configs/nokia_rx51.h                       |  18 +-
 include/configs/o2d.h                              |   5 +-
 include/configs/o2d300.h                           |   5 +-
 include/configs/o2dnt-common.h                     |  18 +-
 include/configs/o2dnt2.h                           |   5 +-
 include/configs/o2i.h                              |   5 +-
 include/configs/o2mnt.h                            |   5 +-
 include/configs/o3dnt.h                            |   5 +-
 include/configs/ocotea.h                           |  18 +-
 include/configs/omap1510.h                         |  20 +-
 include/configs/omap1510inn.h                      |  18 +-
 include/configs/omap3_beagle.h                     |  18 +-
 include/configs/omap3_evm.h                        |  18 +-
 include/configs/omap3_evm_common.h                 |  10 +-
 include/configs/omap3_evm_quick_mmc.h              |  10 +-
 include/configs/omap3_evm_quick_nand.h             |  10 +-
 include/configs/omap3_logic.h                      |  18 +-
 include/configs/omap3_mvblx.h                      |  18 +-
 include/configs/omap3_overo.h                      |  14 +-
 include/configs/omap3_pandora.h                    |  15 +-
 include/configs/omap3_sdp3430.h                    |  18 +-
 include/configs/omap3_zoom1.h                      |  18 +-
 include/configs/omap3_zoom2.h                      |  18 +-
 include/configs/omap4_common.h                     |  18 +-
 include/configs/omap4_panda.h                      |  18 +-
 include/configs/omap4_sdp4430.h                    |  18 +-
 include/configs/omap5912osk.h                      |  18 +-
 include/configs/omap5_common.h                     |  18 +-
 include/configs/omap5_uevm.h                       |  18 +-
 include/configs/omap730.h                          |  20 +-
 include/configs/omap730p2.h                        |  18 +-
 include/configs/openrd.h                           |  18 +-
 include/configs/openrisc-generic.h                 |  18 +-
 include/configs/origen.h                           |  18 +-
 include/configs/otc570.h                           |  18 +-
 include/configs/p1_p2_rdb_pc.h                     |  18 +-
 include/configs/p3mx.h                             |  18 +-
 include/configs/p3p440.h                           |  18 +-
 include/configs/palmld.h                           |  15 +-
 include/configs/palmtc.h                           |  15 +-
 include/configs/pb1x00.h                           |  18 +-
 include/configs/pcm030.h                           |  18 +-
 include/configs/pcs440ep.h                         |  18 +-
 include/configs/pdm360ng.h                         |  18 +-
 include/configs/pdnb3.h                            |  18 +-
 include/configs/pf5200.h                           |  18 +-
 include/configs/plutux.h                           |  18 +-
 include/configs/pm9261.h                           |  18 +-
 include/configs/pm9263.h                           |  18 +-
 include/configs/pm9g45.h                           |  18 +-
 include/configs/pogo_e02.h                         |  16 +-
 include/configs/ppmc8260.h                         |  18 +-
 include/configs/pxa-common.h                       |  15 +-
 include/configs/pxa255_idp.h                       |  18 +-
 include/configs/qemu-mips.h                        |  18 +-
 include/configs/qemu-mips64.h                      |  18 +-
 include/configs/qong.h                             |  15 +-
 include/configs/quad100hd.h                        |  18 +-
 include/configs/quantum.h                          |  18 +-
 include/configs/r0p7734.h                          |  18 +-
 include/configs/r7780mp.h                          |  18 +-
 include/configs/rd6281a.h                          |  18 +-
 include/configs/redwood.h                          |  18 +-
 include/configs/rsdproto.h                         |  18 +-
 include/configs/rsk7203.h                          |  18 +-
 include/configs/rsk7264.h                          |   3 +-
 include/configs/rsk7269.h                          |   3 +-
 include/configs/s5p_goni.h                         |  18 +-
 include/configs/s5pc210_universal.h                |  18 +-
 include/configs/sacsng.h                           |  18 +-
 include/configs/sama5d3xek.h                       |  18 +-
 include/configs/sandbox.h                          |  18 +-
 include/configs/sbc35_a9g20.h                      |  18 +-
 include/configs/sbc405.h                           |  18 +-
 include/configs/sbc8349.h                          |  18 +-
 include/configs/sbc8548.h                          |  18 +-
 include/configs/sbc8641d.h                         |  18 +-
 include/configs/sc3.h                              |  18 +-
 include/configs/sc_sps_1.h                         |  15 +-
 include/configs/scb9328.h                          |  16 +-
 include/configs/seaboard.h                         |  18 +-
 include/configs/sequoia.h                          |  15 +-
 include/configs/sh7752evb.h                        |  18 +-
 include/configs/sh7757lcr.h                        |  18 +-
 include/configs/sh7763rdp.h                        |  18 +-
 include/configs/sh7785lcr.h                        |  18 +-
 include/configs/sheevaplug.h                       |  18 +-
 include/configs/shmin.h                            |  18 +-
 include/configs/smdk2410.h                         |  18 +-
 include/configs/smdk5250.h                         |  18 +-
 include/configs/smdkc100.h                         |  18 +-
 include/configs/smdkv310.h                         |  18 +-
 include/configs/snapper9260.h                      |  18 +-
 include/configs/snow.h                             |  18 +-
 include/configs/snowball.h                         |  18 +-
 include/configs/socfpga_cyclone5.h                 |  13 +-
 include/configs/socrates.h                         |  18 +-
 include/configs/spc1920.h                          |  15 +-
 include/configs/spear-common.h                     |  18 +-
 include/configs/spear3xx_evb.h                     |  18 +-
 include/configs/spear6xx_evb.h                     |  18 +-
 include/configs/spieval.h                          |  18 +-
 include/configs/stamp9g20.h                        |  18 +-
 include/configs/stxgp3.h                           |  18 +-
 include/configs/stxssa.h                           |  18 +-
 include/configs/stxxtc.h                           |  18 +-
 include/configs/suvd3.h                            |   5 +-
 include/configs/svm_sc8xx.h                        |  18 +-
 include/configs/t3corp.h                           |  15 +-
 include/configs/t4qds.h                            |  18 +-
 include/configs/taihu.h                            |  18 +-
 include/configs/taishan.h                          |  15 +-
 include/configs/tam3517-common.h                   |  14 +-
 include/configs/tb0229.h                           |  15 +-
 include/configs/tec.h                              |  18 +-
 include/configs/tegra-common-post.h                |  18 +-
 include/configs/tegra-common.h                     |  18 +-
 include/configs/tegra20-common.h                   |  18 +-
 include/configs/tegra30-common.h                   |  18 +-
 include/configs/titanium.h                         |  10 +-
 include/configs/tk71.h                             |  18 +-
 include/configs/tnetv107x_evm.h                    |  15 +-
 include/configs/tny_a9260.h                        |  18 +-
 include/configs/top9000.h                          |  18 +-
 include/configs/trats.h                            |  18 +-
 include/configs/tricorder.h                        |  18 +-
 include/configs/trimslice.h                        |  18 +-
 include/configs/trizepsiv.h                        |  18 +-
 include/configs/tt01.h                             |  18 +-
 include/configs/tuxx1.h                            |   5 +-
 include/configs/twister.h                          |  14 +-
 include/configs/tx25.h                             |  15 +-
 include/configs/u8500_href.h                       |  18 +-
 include/configs/uc100.h                            |  18 +-
 include/configs/uc101.h                            |  18 +-
 include/configs/utx8245.h                          |  18 +-
 include/configs/v37.h                              |  18 +-
 include/configs/v38b.h                             |  16 +-
 include/configs/v5fx30teval.h                      |  12 +-
 include/configs/vct.h                              |  15 +-
 include/configs/ve8313.h                           |  18 +-
 include/configs/ventana.h                          |  18 +-
 include/configs/versatile.h                        |  18 +-
 include/configs/vexpress_ca15_tc2.h                |  18 +-
 include/configs/vexpress_ca5x2.h                   |  18 +-
 include/configs/vexpress_ca9x4.h                   |  18 +-
 include/configs/vexpress_common.h                  |  18 +-
 include/configs/vf610twr.h                         |  15 +-
 include/configs/virtlab2.h                         |  18 +-
 include/configs/vision2.h                          |  15 +-
 include/configs/vl_ma2sc.h                         |  18 +-
 include/configs/vme8349.h                          |  18 +-
 include/configs/vpac270.h                          |  15 +-
 include/configs/walnut.h                           |  18 +-
 include/configs/wandboard.h                        |   5 +-
 include/configs/whistler.h                         |  18 +-
 include/configs/wireless_space.h                   |  13 +-
 include/configs/woodburn.h                         |  15 +-
 include/configs/woodburn_common.h                  |  15 +-
 include/configs/woodburn_sd.h                      |  15 +-
 include/configs/x600.h                             |  18 +-
 include/configs/xaeniax.h                          |  18 +-
 include/configs/xilinx-ppc.h                       |  12 +-
 include/configs/xilinx-ppc405-generic.h            |  18 +-
 include/configs/xilinx-ppc405.h                    |  18 +-
 include/configs/xilinx-ppc440-generic.h            |  12 +-
 include/configs/xilinx-ppc440.h                    |  12 +-
 include/configs/xpedite1000.h                      |  18 +-
 include/configs/xpedite517x.h                      |  18 +-
 include/configs/xpedite520x.h                      |  18 +-
 include/configs/xpedite537x.h                      |  18 +-
 include/configs/xpedite550x.h                      |  17 +-
 include/configs/yosemite.h                         |  18 +-
 include/configs/yucca.h                            |  18 +-
 include/configs/zeus.h                             |  18 +-
 include/configs/zipitz2.h                          |  15 +-
 include/configs/zmx25.h                            |  18 +-
 include/configs/zynq.h                             |  18 +-
 include/crc.h                                      |  33 +-
 include/cros_ec.h                                  |  19 +-
 include/cros_ec_message.h                          |  17 +-
 include/da9030.h                                   |  18 +-
 include/dataflash.h                                |  18 +-
 include/dfu.h                                      |  14 +-
 include/dialog_pmic.h                              |  15 +-
 include/dm9000.h                                   |   5 +-
 include/dm9161.h                                   |   5 +-
 include/dp83848.h                                  |   5 +-
 include/ds1722.h                                   |  18 +-
 include/dtt.h                                      |  18 +-
 include/dwmmc.h                                    |  15 +-
 include/edid.h                                     |  19 +-
 include/env_attr.h                                 |  18 +-
 include/env_callback.h                             |  18 +-
 include/env_default.h                              |  18 +-
 include/env_flags.h                                |  18 +-
 include/environment.h                              |  18 +-
 include/ext_common.h                               |  14 +-
 include/faraday/ftahbc020s.h                       |  14 +-
 include/faraday/ftpmu010.h                         |  14 +-
 include/faraday/ftsdc010.h                         |  14 +-
 include/faraday/ftsdmc020.h                        |  14 +-
 include/faraday/ftsdmc021.h                        |  14 +-
 include/faraday/ftsmc020.h                         |  14 +-
 include/faraday/fttmr010.h                         |  14 +-
 include/faraday/ftwdt010_wdt.h                     |  14 +-
 include/fat.h                                      |  19 +-
 include/fdc.h                                      |  18 +-
 include/fdt_support.h                              |  18 +-
 include/fdtdec.h                                   |  18 +-
 include/fis.h                                      |  16 +-
 include/flash.h                                    |  18 +-
 include/fm_eth.h                                   |  15 +-
 include/fpga.h                                     |  19 +-
 include/fsl_diu_fb.h                               |  18 +-
 include/fsl_esdhc.h                                |  18 +-
 include/fsl_mdio.h                                 |  15 +-
 include/fsl_pmic.h                                 |  18 +-
 include/fuse.h                                     |  18 +-
 include/g_dnl.h                                    |  15 +-
 include/gdsys_fpga.h                               |  18 +-
 include/hash.h                                     |  18 +-
 include/hush.h                                     |  18 +-
 include/hw_sha.h                                   |  15 +-
 include/hwconfig.h                                 |   5 +-
 include/i2c.h                                      |  18 +-
 include/i2s.h                                      |  18 +-
 include/i8042.h                                    |  18 +-
 include/ide.h                                      |  18 +-
 include/image.h                                    |  19 +-
 include/initcall.h                                 |  18 +-
 include/input.h                                    |  17 +-
 include/iomux.h                                    |  18 +-
 include/ipu_pixfmt.h                               |  18 +-
 include/jffs2/load_kernel.h                        |  16 +-
 include/jffs2/mini_inflate.h                       |  16 +-
 include/key_matrix.h                               |  17 +-
 include/ks8721.h                                   |   5 +-
 include/lattice.h                                  |  19 +-
 include/lcd.h                                      |  18 +-
 include/ld9040.h                                   |  18 +-
 include/led-display.h                              |  18 +-
 include/libata.h                                   |  16 +-
 include/libfdt_env.h                               |  14 +-
 include/libtizen.h                                 |  16 +-
 include/linker_lists.h                             |   8 +-
 include/linux/apm_bios.h                           |  10 +-
 include/linux/bitrev.h                             |   3 +-
 include/linux/linkage.h                            |  18 +-
 include/linux/mtd/bbm.h                            |  15 +-
 include/linux/mtd/docg4.h                          |   4 +-
 include/linux/mtd/fsl_upm.h                        |   5 +-
 include/linux/mtd/fsmc_nand.h                      |  18 +-
 include/linux/mtd/samsung_onenand.h                |  18 +-
 include/linux/mtd/st_smi.h                         |  18 +-
 include/linux/mtd/ubi.h                            |  14 +-
 include/linux/netdevice.h                          |   5 +-
 include/linux/rbtree.h                             |  14 +-
 include/linux/usb/composite.h                      |  14 +-
 include/lmb.h                                      |   5 +-
 include/logbuff.h                                  |  18 +-
 include/lxt971a.h                                  |  18 +-
 include/lynxkdi.h                                  |  18 +-
 include/lzma/LzmaDec.h                             |  18 +-
 include/lzma/LzmaTools.h                           |  18 +-
 include/lzma/LzmaTypes.h                           |  18 +-
 include/mb862xx.h                                  |  18 +-
 include/mc13783.h                                  |  18 +-
 include/mc13892.h                                  |  18 +-
 include/mc34704.h                                  |   6 +-
 include/mc9sdz60.h                                 |  19 +-
 include/menu.h                                     |  13 +-
 include/mk48t59.h                                  |  18 +-
 include/mmc.h                                      |  18 +-
 include/mpc106.h                                   |  18 +-
 include/mpc5xx.h                                   |  18 +-
 include/mpc5xxx.h                                  |  18 +-
 include/mpc824x.h                                  |  18 +-
 include/mpc8260.h                                  |  18 +-
 include/mpc83xx.h                                  |   8 +-
 include/mpc8xx.h                                   |  18 +-
 include/mtd/cfi_flash.h                            |  19 +-
 include/mtd/ubi-user.h                             |  14 +-
 include/mv88e6352.h                                |  18 +-
 include/mvmfp.h                                    |  18 +-
 include/nand.h                                     |  12 +-
 include/netdev.h                                   |  18 +-
 include/nios2-epcs.h                               |  18 +-
 include/nios2-io.h                                 |  18 +-
 include/nios2-yanu.h                               |  18 +-
 include/nios2.h                                    |  18 +-
 include/ns87308.h                                  |  18 +-
 include/os.h                                       |  18 +-
 include/palmas.h                                   |  18 +-
 include/part.h                                     |  18 +-
 include/part_efi.h                                 |  18 +-
 include/pca9564.h                                  |  15 +-
 include/pca9698.h                                  |  18 +-
 include/pci.h                                      |  18 +-
 include/pcmcia.h                                   |  18 +-
 include/phy.h                                      |  15 +-
 include/post.h                                     |  18 +-
 include/power/battery.h                            |  18 +-
 include/power/fg_battery_cell_params.h             |  18 +-
 include/power/max17042_fg.h                        |  18 +-
 include/power/max77686_pmic.h                      |  18 +-
 include/power/max8997_muic.h                       |  18 +-
 include/power/max8997_pmic.h                       |  18 +-
 include/power/max8998_pmic.h                       |  18 +-
 include/power/pmic.h                               |  18 +-
 include/power/power_chrg.h                         |  18 +-
 include/ppc_asm.tmpl                               |  18 +-
 include/ppc_defs.h                                 |  18 +-
 include/pwm.h                                      |  15 +-
 include/reiserfs.h                                 |  14 +-
 include/rsa.h                                      |  18 +-
 include/rtc.h                                      |  18 +-
 include/s6e63d6.h                                  |  18 +-
 include/s_record.h                                 |  18 +-
 include/scsi.h                                     |  19 +-
 include/sdhci.h                                    |  18 +-
 include/search.h                                   |  15 +-
 include/sed13806.h                                 |  18 +-
 include/sed156x.h                                  |  18 +-
 include/sja1000.h                                  |  18 +-
 include/sm501.h                                    |  18 +-
 include/smiLynxEM.h                                |  18 +-
 include/sound.h                                    |  18 +-
 include/spartan2.h                                 |  19 +-
 include/spartan3.h                                 |  19 +-
 include/spd.h                                      |  14 +-
 include/spi.h                                      |  18 +-
 include/spi_flash.h                                |  12 +-
 include/spl.h                                      |  18 +-
 include/status_led.h                               |  18 +-
 include/stdio_dev.h                                |  18 +-
 include/stratixII.h                                |  19 +-
 include/sym53c8xx.h                                |  20 +-
 include/synopsys/dwcddr21mctl.h                    |  14 +-
 include/systemace.h                                |  15 +-
 include/timestamp.h                                |  18 +-
 include/tis.h                                      |  18 +-
 include/tpm.h                                      |  18 +-
 include/tps6586x.h                                 |  18 +-
 include/trace.h                                    |  15 +-
 include/tsi108.h                                   |  15 +-
 include/tsi148.h                                   |  18 +-
 include/twl4030.h                                  |  15 +-
 include/twl6030.h                                  |  18 +-
 include/tws.h                                      |  19 +-
 include/u-boot/crc.h                               |  18 +-
 include/universe.h                                 |  18 +-
 include/usb.h                                      |  19 +-
 include/usb/designware_udc.h                       |  18 +-
 include/usb/ehci-fsl.h                             |  15 +-
 include/usb/fotg210.h                              |   3 +-
 include/usb/fusbh200.h                             |   3 +-
 include/usb/lin_gadget_compat.h                    |  15 +-
 include/usb/mpc8xx_udc.h                           |  17 +-
 include/usb/musb_udc.h                             |  15 +-
 include/usb/mv_udc.h                               |  15 +-
 include/usb/pxa27x_udc.h                           |  15 +-
 include/usb/s3c_udc.h                              |  15 +-
 include/usb_cdc_acm.h                              |  15 +-
 include/usb_defs.h                                 |  19 +-
 include/usb_ether.h                                |  17 +-
 include/usb_mass_storage.h                         |  15 +-
 include/usbdescriptors.h                           |  15 +-
 include/usbdevice.h                                |  15 +-
 include/version.h                                  |  18 +-
 include/video_ad7176.h                             |  18 +-
 include/video_ad7177.h                             |  18 +-
 include/video_ad7179.h                             |  18 +-
 include/video_fb.h                                 |  18 +-
 include/video_font.h                               |  18 +-
 include/video_font_data.h                          |  18 +-
 include/virtex2.h                                  |  19 +-
 include/vsprintf.h                                 |  18 +-
 include/vxworks.h                                  |  18 +-
 include/w83c553f.h                                 |  18 +-
 include/watchdog.h                                 |  18 +-
 include/xilinx.h                                   |  19 +-
 include/xyzModem.h                                 |  34 +-
 include/zfs/dmu.h                                  |  14 +-
 include/zfs/dmu_objset.h                           |  14 +-
 include/zfs/dnode.h                                |  14 +-
 include/zfs/dsl_dataset.h                          |  14 +-
 include/zfs/dsl_dir.h                              |  14 +-
 include/zfs/sa_impl.h                              |  14 +-
 include/zfs/spa.h                                  |  14 +-
 include/zfs/uberblock_impl.h                       |  14 +-
 include/zfs/vdev_impl.h                            |  14 +-
 include/zfs/zap_impl.h                             |  14 +-
 include/zfs/zap_leaf.h                             |  14 +-
 include/zfs/zfs.h                                  |  14 +-
 include/zfs/zfs_acl.h                              |  14 +-
 include/zfs/zfs_znode.h                            |  14 +-
 include/zfs/zil.h                                  |  14 +-
 include/zfs/zio.h                                  |  14 +-
 include/zfs/zio_checksum.h                         |  14 +-
 include/zynqpl.h                                   |  18 +-
 lib/Makefile                                       |  18 +-
 lib/aes.c                                          |  18 +-
 lib/asm-offsets.c                                  |   5 +-
 lib/bitrev.c                                       |   3 +-
 lib/circbuf.c                                      |  15 +-
 lib/crc16.c                                        |  34 +-
 lib/ctype.c                                        |  18 +-
 lib/display_options.c                              |  18 +-
 lib/fdtdec.c                                       |  18 +-
 lib/fdtdec_test.c                                  |  18 +-
 lib/gunzip.c                                       |  18 +-
 lib/gzip.c                                         |  18 +-
 lib/hang.c                                         |  18 +-
 lib/hashtable.c                                    |  15 +-
 lib/initcall.c                                     |  18 +-
 lib/ldiv.c                                         |  16 +-
 lib/libfdt/Makefile                                |  18 +-
 lib/lmb.c                                          |   5 +-
 lib/lzma/LzmaTools.c                               |  18 +-
 lib/lzma/LzmaTools.h                               |  18 +-
 lib/lzma/Makefile                                  |  18 +-
 lib/lzo/Makefile                                   |  18 +-
 lib/net_utils.c                                    |  18 +-
 lib/rand.c                                         |  18 +-
 lib/rbtree.c                                       |  14 +-
 lib/rsa/Makefile                                   |  18 +-
 lib/rsa/rsa-sign.c                                 |  15 +-
 lib/rsa/rsa-verify.c                               |  15 +-
 lib/sha256.c                                       |  14 +-
 lib/strmhz.c                                       |  18 +-
 lib/time.c                                         |  18 +-
 lib/tizen/Makefile                                 |  18 +-
 lib/tizen/tizen.c                                  |  16 +-
 lib/tizen/tizen_hd_logo.h                          |  16 +-
 lib/tizen/tizen_hd_logo_data.h                     |  16 +-
 lib/tpm.c                                          |  18 +-
 lib/trace.c                                        |  15 +-
 lib/uuid.c                                         |  18 +-
 lib/zlib/Makefile                                  |  18 +-
 mkconfig                                           |   4 +-
 nand_spl/board/amcc/acadia/Makefile                |  18 +-
 nand_spl/board/amcc/acadia/config.mk               |  18 +-
 nand_spl/board/amcc/acadia/u-boot.lds              |  18 +-
 nand_spl/board/amcc/bamboo/Makefile                |  18 +-
 nand_spl/board/amcc/bamboo/config.mk               |  18 +-
 nand_spl/board/amcc/bamboo/sdram.c                 |  18 +-
 nand_spl/board/amcc/bamboo/u-boot.lds              |  18 +-
 nand_spl/board/amcc/canyonlands/Makefile           |  18 +-
 nand_spl/board/amcc/canyonlands/config.mk          |  18 +-
 nand_spl/board/amcc/canyonlands/ddr2_fixed.c       |  18 +-
 nand_spl/board/amcc/canyonlands/u-boot.lds         |  18 +-
 nand_spl/board/amcc/kilauea/Makefile               |  18 +-
 nand_spl/board/amcc/kilauea/config.mk              |  18 +-
 nand_spl/board/amcc/kilauea/u-boot.lds             |  18 +-
 nand_spl/board/amcc/sequoia/Makefile               |  18 +-
 nand_spl/board/amcc/sequoia/config.mk              |  18 +-
 nand_spl/board/amcc/sequoia/u-boot.lds             |  18 +-
 nand_spl/board/freescale/mpc8315erdb/Makefile      |  18 +-
 nand_spl/board/freescale/mpc8315erdb/u-boot.lds    |  18 +-
 nand_spl/board/freescale/mpc8536ds/Makefile        |  18 +-
 nand_spl/board/freescale/mpc8536ds/nand_boot.c     |  17 +-
 nand_spl/board/freescale/mpc8569mds/Makefile       |  18 +-
 nand_spl/board/freescale/mpc8569mds/nand_boot.c    |  17 +-
 nand_spl/board/freescale/mpc8572ds/Makefile        |  18 +-
 nand_spl/board/freescale/mpc8572ds/nand_boot.c     |  17 +-
 nand_spl/board/freescale/p1023rds/Makefile         |  18 +-
 nand_spl/board/freescale/p1023rds/nand_boot.c      |  17 +-
 nand_spl/board/freescale/p1_p2_rdb/Makefile        |  18 +-
 nand_spl/board/freescale/p1_p2_rdb/nand_boot.c     |  17 +-
 nand_spl/board/sheldon/simpc8313/Makefile          |  18 +-
 nand_spl/board/sheldon/simpc8313/u-boot.lds        |  18 +-
 nand_spl/nand_boot.c                               |  15 +-
 nand_spl/nand_boot_fsl_elbc.c                      |  15 +-
 net/Makefile                                       |  18 +-
 net/dns.h                                          |   5 +-
 net/eth.c                                          |  18 +-
 net/nfs.h                                          |   5 +-
 net/rarp.c                                         |  18 +-
 net/rarp.h                                         |  18 +-
 net/sntp.h                                         |   5 +-
 post/Makefile                                      |  18 +-
 post/board/lwmon/Makefile                          |  18 +-
 post/board/lwmon/sysmon.c                          |  18 +-
 post/board/lwmon5/Makefile                         |  18 +-
 post/board/lwmon5/dsp.c                            |  18 +-
 post/board/lwmon5/dspic.c                          |  18 +-
 post/board/lwmon5/fpga.c                           |  18 +-
 post/board/lwmon5/gdc.c                            |  18 +-
 post/board/lwmon5/sysmon.c                         |  18 +-
 post/board/lwmon5/watchdog.c                       |  18 +-
 post/board/netta/Makefile                          |  18 +-
 post/board/netta/codec.c                           |  18 +-
 post/board/netta/dsp.c                             |  18 +-
 post/board/pdm360ng/Makefile                       |  18 +-
 post/board/pdm360ng/coproc_com.c                   |  18 +-
 post/cpu/mpc83xx/Makefile                          |  18 +-
 post/cpu/mpc83xx/ecc.c                             |  18 +-
 post/cpu/mpc8xx/Makefile                           |  18 +-
 post/cpu/mpc8xx/cache.c                            |  18 +-
 post/cpu/mpc8xx/cache_8xx.S                        |  18 +-
 post/cpu/mpc8xx/ether.c                            |  18 +-
 post/cpu/mpc8xx/spr.c                              |  18 +-
 post/cpu/mpc8xx/uart.c                             |  18 +-
 post/cpu/mpc8xx/usb.c                              |  18 +-
 post/cpu/mpc8xx/watchdog.c                         |  18 +-
 post/cpu/ppc4xx/Makefile                           |  18 +-
 post/cpu/ppc4xx/cache.c                            |  18 +-
 post/cpu/ppc4xx/cache_4xx.S                        |  18 +-
 post/cpu/ppc4xx/denali_ecc.c                       |  18 +-
 post/cpu/ppc4xx/ether.c                            |  18 +-
 post/cpu/ppc4xx/fpu.c                              |  18 +-
 post/cpu/ppc4xx/ocm.c                              |  18 +-
 post/cpu/ppc4xx/spr.c                              |  18 +-
 post/cpu/ppc4xx/uart.c                             |  18 +-
 post/cpu/ppc4xx/watchdog.c                         |  18 +-
 post/drivers/Makefile                              |  18 +-
 post/drivers/i2c.c                                 |  18 +-
 post/drivers/memory.c                              |  18 +-
 post/drivers/rtc.c                                 |  18 +-
 post/lib_powerpc/Makefile                          |  18 +-
 post/lib_powerpc/andi.c                            |  18 +-
 post/lib_powerpc/asm.S                             |  18 +-
 post/lib_powerpc/b.c                               |  18 +-
 post/lib_powerpc/cmp.c                             |  18 +-
 post/lib_powerpc/cmpi.c                            |  18 +-
 post/lib_powerpc/complex.c                         |  18 +-
 post/lib_powerpc/cpu.c                             |  18 +-
 post/lib_powerpc/cpu_asm.h                         |  18 +-
 post/lib_powerpc/cr.c                              |  18 +-
 post/lib_powerpc/fpu/20001122-1.c                  |  18 +-
 post/lib_powerpc/fpu/20010114-2.c                  |  18 +-
 post/lib_powerpc/fpu/20010226-1.c                  |  18 +-
 post/lib_powerpc/fpu/980619-1.c                    |  18 +-
 post/lib_powerpc/fpu/Makefile                      |  18 +-
 post/lib_powerpc/fpu/acc1.c                        |  18 +-
 post/lib_powerpc/fpu/compare-fp-1.c                |  18 +-
 post/lib_powerpc/fpu/darwin-ldouble.c              |  25 +-
 post/lib_powerpc/fpu/fpu.c                         |  18 +-
 post/lib_powerpc/fpu/mul-subnormal-single-1.c      |  18 +-
 post/lib_powerpc/load.c                            |  18 +-
 post/lib_powerpc/multi.c                           |  18 +-
 post/lib_powerpc/rlwimi.c                          |  18 +-
 post/lib_powerpc/rlwinm.c                          |  18 +-
 post/lib_powerpc/rlwnm.c                           |  18 +-
 post/lib_powerpc/srawi.c                           |  18 +-
 post/lib_powerpc/store.c                           |  18 +-
 post/lib_powerpc/string.c                          |  18 +-
 post/lib_powerpc/three.c                           |  18 +-
 post/lib_powerpc/threei.c                          |  18 +-
 post/lib_powerpc/threex.c                          |  18 +-
 post/lib_powerpc/two.c                             |  18 +-
 post/lib_powerpc/twox.c                            |  18 +-
 post/post.c                                        |  18 +-
 post/rules.mk                                      |  18 +-
 post/tests.c                                       |  18 +-
 rules.mk                                           |  21 +-
 spl/Makefile                                       |   3 +-
 test/Makefile                                      |  18 +-
 test/command_ut.c                                  |  18 +-
 test/image/test-fit.py                             |  15 +-
 test/trace/test-trace.sh                           |  15 +-
 test/vboot/vboot_test.sh                           |  15 +-
 tools/Makefile                                     |  18 +-
 tools/aisimage.c                                   |  18 +-
 tools/aisimage.h                                   |  18 +-
 tools/bin2header.c                                 |  18 +-
 tools/buildman/README                              |  18 +-
 tools/buildman/board.py                            |  18 +-
 tools/buildman/bsettings.py                        |  18 +-
 tools/buildman/builder.py                          |  18 +-
 tools/buildman/buildman.py                         |  18 +-
 tools/buildman/control.py                          |  18 +-
 tools/buildman/test.py                             |  18 +-
 tools/buildman/toolchain.py                        |  18 +-
 tools/default_image.c                              |  15 +-
 tools/env/Makefile                                 |  18 +-
 tools/env/fw_env.c                                 |  18 +-
 tools/env/fw_env.h                                 |  18 +-
 tools/env/fw_env_main.c                            |  18 +-
 tools/envcrc.c                                     |  18 +-
 tools/fdt_host.h                                   |  15 +-
 tools/fit_image.c                                  |  15 +-
 tools/gdb/Makefile                                 |  18 +-
 tools/gdb/error.c                                  |  18 +-
 tools/gdb/error.h                                  |  18 +-
 tools/gdb/gdbcont.c                                |  18 +-
 tools/gdb/gdbsend.c                                |  18 +-
 tools/gdb/remote.c                                 |  16 +-
 tools/gdb/remote.h                                 |  18 +-
 tools/gdb/serial.c                                 |  18 +-
 tools/gdb/serial.h                                 |  18 +-
 tools/gen_eth_addr.c                               |  18 +-
 tools/getline.c                                    |  21 +-
 tools/image-host.c                                 |  18 +-
 tools/imls/Makefile                                |  15 +-
 tools/imls/README                                  |  18 +-
 tools/imls/imls.c                                  |  15 +-
 tools/imximage.c                                   |  18 +-
 tools/imximage.h                                   |  18 +-
 tools/kernel-doc/Makefile                          |  15 +-
 tools/kwbimage.c                                   |  18 +-
 tools/kwbimage.h                                   |  18 +-
 tools/mingw_support.c                              |  29 +-
 tools/mingw_support.h                              |  14 +-
 tools/mkenvimage.c                                 |  18 +-
 tools/mkexynosspl.c                                |  18 +-
 tools/mkimage.c                                    |  15 +-
 tools/mkimage.h                                    |  15 +-
 tools/mpc86x_clk.c                                 |  18 +-
 tools/mxsboot.c                                    |  18 +-
 tools/omap/clocks_get_m_n.c                        |  18 +-
 tools/omapimage.c                                  |  18 +-
 tools/omapimage.h                                  |  18 +-
 tools/os_support.c                                 |  14 +-
 tools/os_support.h                                 |  14 +-
 tools/patman/README                                |  18 +-
 tools/patman/checkpatch.py                         |  18 +-
 tools/patman/command.py                            |  18 +-
 tools/patman/commit.py                             |  18 +-
 tools/patman/get_maintainer.py                     |  18 +-
 tools/patman/gitutil.py                            |  18 +-
 tools/patman/patchstream.py                        |  18 +-
 tools/patman/patman.py                             |  18 +-
 tools/patman/project.py                            |  18 +-
 tools/patman/series.py                             |  18 +-
 tools/patman/settings.py                           |  18 +-
 tools/patman/terminal.py                           |  18 +-
 tools/patman/test.py                               |  38 +-
 tools/pblimage.c                                   |  18 +-
 tools/pblimage.h                                   |  18 +-
 tools/proftool.c                                   |  15 +-
 tools/scripts/README                               |  18 +-
 tools/ublimage.c                                   |  18 +-
 tools/ublimage.h                                   |  18 +-
 tools/ubsha1.c                                     |  18 +-
 tools/updater/Makefile                             |  18 +-
 tools/updater/cmd_flash.c                          |  18 +-
 tools/updater/ctype.c                              |  18 +-
 tools/updater/flash.c                              |  18 +-
 tools/updater/flash_hw.c                           |  18 +-
 tools/updater/ppcstring.S                          |   5 +-
 5794 files changed, 7167 insertions(+), 92247 deletions(-)
 create mode 100644 Licenses/README
 create mode 100644 Licenses/eCos-2.0.txt
 rename COPYING => Licenses/gpl-2.0.txt (81%)
 create mode 100644 Licenses/lgpl-2.0.txt
 create mode 100644 Licenses/lgpl-2.1.txt

-- 
1.8.1.4

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

* [U-Boot] [PATCH 1/5] Licenses: introduce SPDX Unique Lincense Identifiers
  2013-07-10  7:37 [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Wolfgang Denk
@ 2013-07-10  7:37 ` Wolfgang Denk
  2013-07-11 20:35 ` [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Marek Vasut
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 15+ messages in thread
From: Wolfgang Denk @ 2013-07-10  7:37 UTC (permalink / raw)
  To: u-boot

Like many other projects, U-Boot has a tradition of including big
blocks of License headers in all files.  This not only blows up the
source code with mostly redundant information, but also makes it very
difficult to generate License Clearing Reports.  An additional problem
is that even the same lincenses are referred to by a number of
slightly varying text blocks (full, abbreviated, different
indentation, line wrapping and/or white space, with obsolete address
information, ...) which makes automatic processing a nightmare.

To make this easier, such license headers in the source files will be
replaced with a single line reference to Unique Lincense Identifiers
as defined by the Linux Foundation's SPDX project [1].  For example,
in a source file the full "GPL v2.0 or later" header text will be
replaced by a single line:

        SPDX-License-Identifier:        GPL-2.0+

We use the SPDX Unique Lincense Identifiers here; these are available
at [2].

Note: From the legal point of view, this patch is supposed to be only
a change to the textual representation of the license information,
but in no way any change to the actual license terms. With this patch
applied, all files will still be licensed under the same terms they
were before.

Note 2: The apparent difference between the old "COPYING" and the new
"Licenses/gpl-2.0.txt" only results from switching to the upstream
version of the license which is differently formatted; there are not
any actual changes to the content.

Note 3: There are some recurring questions about linense issues, such
as:
    - Is a "All Rights Reserved" clause a problem in GPL code?
    - Are files without any license header a problem?
    - Do we need license headers at all?

The following excerpt from an e-mail by Daniel B. Ravicher should help
with these:

| Message-ID: <4ADF8CAA.5030808@softwarefreedom.org>
| Date: Wed, 21 Oct 2009 18:35:22 -0400
| From: "Daniel B. Ravicher" <ravicher@softwarefreedom.org>
| To: Wolfgang Denk <wd@denx.de>
| Subject: Re: GPL and license cleanup questions
|
| Mr. Denk,
|
| Wolfgang Denk wrote:
| > - There are a number of files which do not include any specific
| > license information at all. Is it correct to assume that these files
| > are automatically covered by the "GPL v2 or later" clause as
| > specified by the COPYING file in the top level directory of the
| > U-Boot source tree?
|
| That is a very fact specific analysis and could be different across the
| various files.  However, if the contributor could reasonably be expected
| to have known that the project was licensed GPLv2 or later at the time
| she made her contribution, then a reasonably implication is that she
| consented to her contributions being distributed under those terms.
|
| > - Do such files need any clean up, for example should we add GPL
| > headers to them, or is this not needed?
|
| If the project as a whole is licensed under clear terms, you need not
| identify those same terms in each file, although there is no harm in
| doing so.
|
| > - There are other files, which include both a GPL license header
| > _plus_ some copyright note with an "All Rights Reserved" clause. It
| > has been my understanding that this is a conflict, and me must ask
| > the copyright holders to remove such "All Rights Reserved" clauses.
| > But then, some people claim that "All Rights Reserved" is a no-op
| > nowadays. License checking tools (like OSLC) seem to indicate this is
| > a problem, but then we see quite a lot of "All rights reserved" in
| > BSD-licensed files in gcc and glibc. So what is the correct way to
| > deal with such files?
|
| It is not a conflict to grant a license and also reserve all rights, as
| implicit in that language is that you are reserving all "other" rights
| not granted in the license.  Thus, a file with "Licensed under GPL, All
| Rights Reserved" would mean that it is licensed under the GPL, but no
| other rights are given to copy, modify or redistribute it.
|
| Warm regards,
| --Dan
|
| Daniel B. Ravicher, Legal Director
| Software Freedom Law Center (SFLC) and Moglen Ravicher LLC
| 1995 Broadway, 17th Fl., New York, NY 10023
| (212) 461-1902 direct  (212) 580-0800 main  (212) 580-0898 fax
| ravicher at softwarefreedom.org   www.softwarefreedom.org

[1] http://spdx.org/
[2] http://spdx.org/licenses/

Signed-off-by: Wolfgang Denk <wd@denx.de>
---
 Licenses/README                 |  27 ++++++++++
 COPYING => Licenses/gpl-2.0.txt | 113 ++++++++++++++++++++++++++--------------
 MAKEALL                         |   2 +
 Makefile                        |  20 +------
 README                          |  20 +------
 config.mk                       |  21 +-------
 mkconfig                        |   4 +-
 rules.mk                        |  21 +-------
 8 files changed, 113 insertions(+), 115 deletions(-)
 create mode 100644 Licenses/README
 rename COPYING => Licenses/gpl-2.0.txt (81%)

diff --git a/Licenses/README b/Licenses/README
new file mode 100644
index 0000000..564f598
--- /dev/null
+++ b/Licenses/README
@@ -0,0 +1,27 @@
+
+Like many other projects, U-Boot has a tradition of including big
+blocks of License headers in all files.  This not only blows up the
+source code with mostly redundant information, but also makes it very
+difficult to generate License Clearing Reports.  An additional problem
+is that even the same linces are referred to by a number of slightly
+varying text blocks (full, abbreviated, with obsolted / older address
+information, ...) which makes automatic processing a nightmare.
+
+To make this easier, such license headers in the source files will be
+replaced with a single line reference to Unique Lincense Identifiers
+as defined by the Linux Foundation's SPDX project [1].  For example,
+in a C source the full "GPL v2.0 or later" header text can now be
+replaced by a single line:
+
+	SPDX-License-Identifier:	GPL-2.0+
+
+We use the SPDX Unique Lincense Identifiers here; these are available
+at [2].
+
+[1] http://spdx.org/
+[2] http://spdx.org/licenses/
+
+Full name					SPDX Identifier	OSI Approved	File name	URI
+=======================================================================================================================================
+GNU General Public License v2.0 only		GPL-2.0		Y		gpl-2.0.txt	http://www.gnu.org/licenses/gpl-2.0.txt
+GNU General Public License v2.0 or later	GPL-2.0+	Y		gpl-2.0.txt	http://www.gnu.org/licenses/gpl-2.0.txt
diff --git a/COPYING b/Licenses/gpl-2.0.txt
similarity index 81%
rename from COPYING
rename to Licenses/gpl-2.0.txt
index 44d1983..d159169 100644
--- a/COPYING
+++ b/Licenses/gpl-2.0.txt
@@ -1,38 +1,12 @@
-  U-Boot is Free Software.  It is copyrighted by Wolfgang Denk and
-many others who contributed code (see the actual source code for
-details).  You can redistribute U-Boot and/or modify it under the
-terms of version 2 of the GNU General Public License as published by
-the Free Software Foundation.  Most of it can also be distributed,
-at your option, under any later version of the GNU General Public
-License -- see individual files for exceptions.
-
-  NOTE! This license does *not* cover the so-called "standalone"
-applications that use U-Boot services by means of the jump table
-provided by U-Boot exactly for this purpose - this is merely
-considered normal use of U-Boot, and does *not* fall under the
-heading of "derived work".
-
-  The header files "include/image.h" and "include/asm-*/u-boot.h"
-define interfaces to U-Boot. Including these (unmodified) header
-files in another file is considered normal use of U-Boot, and does
-*not* fall under the heading of "derived work".
-
-  Also note that the GPL below is copyrighted by the Free Software
-Foundation, but the instance of code that it refers to (the U-Boot
-source code) is copyrighted by me and others who actually wrote it.
--- Wolfgang Denk
-
-=======================================================================
-
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
-			    Preamble
+                            Preamble
 
   The licenses for most software are designed to take away your
 freedom to share and change it.  By contrast, the GNU General Public
@@ -41,7 +15,7 @@ software--to make sure the software is free for all its users.  This
 General Public License applies to most of the Free Software
 Foundation's software and to any other program whose authors commit to
 using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
+the GNU Lesser General Public License instead.)  You can apply it to
 your programs, too.
 
   When we speak of free software, we are referring to freedom, not
@@ -81,8 +55,8 @@ patent must be licensed for everyone's free use or not licensed at all.
 
   The precise terms and conditions for copying, distribution and
 modification follow.
-\f
-		    GNU GENERAL PUBLIC LICENSE
+
+                    GNU GENERAL PUBLIC LICENSE
    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 
   0. This License applies to any program or other work which contains
@@ -136,7 +110,7 @@ above, provided that you also meet all of these conditions:
     License.  (Exception: if the Program itself is interactive but
     does not normally print such an announcement, your work based on
     the Program is not required to print an announcement.)
-\f
+
 These requirements apply to the modified work as a whole.  If
 identifiable sections of that work are not derived from the Program,
 and can be reasonably considered independent and separate works in
@@ -194,7 +168,7 @@ access to copy from a designated place, then offering equivalent
 access to copy the source code from the same place counts as
 distribution of the source code, even though third parties are not
 compelled to copy the source along with the object code.
-\f
+
   4. You may not copy, modify, sublicense, or distribute the Program
 except as expressly provided under this License.  Any attempt
 otherwise to copy, modify, sublicense or distribute the Program is
@@ -251,7 +225,7 @@ impose that choice.
 
 This section is intended to make thoroughly clear what is believed to
 be a consequence of the rest of this License.
-\f
+
   8. If the distribution and/or use of the Program is restricted in
 certain countries either by patents or by copyrighted interfaces, the
 original copyright holder who places the Program under this License
@@ -281,7 +255,7 @@ make exceptions for this.  Our decision will be guided by the two goals
 of preserving the free status of all derivatives of our free software and
 of promoting the sharing and reuse of software generally.
 
-			    NO WARRANTY
+                            NO WARRANTY
 
   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
 FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
@@ -303,4 +277,63 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
 PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGES.
 
-		     END OF TERMS AND CONDITIONS
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/MAKEALL b/MAKEALL
index 2e16e0d..4bc1e56 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -2,6 +2,8 @@
 # Tool mainly for U-Boot Quality Assurance: build one or more board
 # configurations with minimal verbosity, showing only warnings and
 # errors.
+#
+# SPDX-License-Identifier:	GPL-2.0+
 
 usage()
 {
diff --git a/Makefile b/Makefile
index 446c2f8..4a0c773 100644
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,8 @@
 #
-# (C) Copyright 2000-2012
+# (C) Copyright 2000-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundatio; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 VERSION = 2013
diff --git a/README b/README
index 85e5a8d..231910e 100644
--- a/README
+++ b/README
@@ -1,24 +1,8 @@
 #
-# (C) Copyright 2000 - 2012
+# (C) Copyright 2000 - 2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 Summary:
diff --git a/config.mk b/config.mk
index 81c2584..7888846 100644
--- a/config.mk
+++ b/config.mk
@@ -1,26 +1,9 @@
 #
-# (C) Copyright 2000-2006
+# (C) Copyright 2000-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
+# SPDX-License-Identifier:	GPL-2.0+
 #
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
-#
-
 #########################################################################
 
 # Set shell to bash if possible, otherwise fall back to sh
diff --git a/mkconfig b/mkconfig
index 73f852e..816ae3d 100755
--- a/mkconfig
+++ b/mkconfig
@@ -5,7 +5,9 @@
 #
 # Parameters:  Target  Architecture  CPU  Board [VENDOR] [SOC]
 #
-# (C) 2002-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
+# (C) 2002-2013 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
+#
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 APPEND=no	# Default: Create new config file
diff --git a/rules.mk b/rules.mk
index fa929f9..f4510b7 100644
--- a/rules.mk
+++ b/rules.mk
@@ -1,26 +1,9 @@
 #
-# (C) Copyright 2006
+# (C) Copyright 2006-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
+# SPDX-License-Identifier:	GPL-2.0+
 #
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
-#
-
 #########################################################################
 
 _depend:	$(obj).depend
-- 
1.8.1.4

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-10  7:37 [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Wolfgang Denk
  2013-07-10  7:37 ` [U-Boot] [PATCH 1/5] Licenses: introduce SPDX Unique Lincense Identifiers Wolfgang Denk
@ 2013-07-11 20:35 ` Marek Vasut
  2013-07-12 19:52   ` Roger Meier
  2013-07-15 21:06 ` [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Stephen Warren
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Marek Vasut @ 2013-07-11 20:35 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang Denk,

> Like many other projects, U-Boot has a tradition of including big
> blocks of License headers in all files.  This not only blows up the
> source code with mostly redundant information, but also makes it very
> difficult to generate License Clearing Reports.  An additional problem
> is that even the same lincenses are referred to by a number of
> slightly varying text blocks (full, abbreviated, different
> indentation, line wrapping and/or white space, with obsolete address
> information, ...) which makes automatic processing a nightmare.
> 
> To make this easier, such license headers in the source files will be
> replaced with a single line reference to Unique Lincense Identifiers
> as defined by the Linux Foundation's SPDX project [1].  For example,
> in a source file the full "GPL v2.0 or later" header text will be
> replaced by a single line:

I think we have a winner for this round of u-boot commit statistics ;-)

For the MXS part and PXA part, series:

Acked-by: Marek Vasut <marex@denx.de>

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-11 20:35 ` [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Marek Vasut
@ 2013-07-12 19:52   ` Roger Meier
  2013-07-23 15:44     ` Wolfgang Denk
                       ` (2 more replies)
  0 siblings, 3 replies; 15+ messages in thread
From: Roger Meier @ 2013-07-12 19:52 UTC (permalink / raw)
  To: u-boot

all,

Quoting Marek Vasut <marex@denx.de>:

> Dear Wolfgang Denk,
>
>> Like many other projects, U-Boot has a tradition of including big
>> blocks of License headers in all files.  This not only blows up the
>> source code with mostly redundant information, but also makes it very
>> difficult to generate License Clearing Reports.  An additional problem
>> is that even the same lincenses are referred to by a number of
>> slightly varying text blocks (full, abbreviated, different
>> indentation, line wrapping and/or white space, with obsolete address
>> information, ...) which makes automatic processing a nightmare.
>>
>> To make this easier, such license headers in the source files will be
>> replaced with a single line reference to Unique Lincense Identifiers
>> as defined by the Linux Foundation's SPDX project [1].  For example,
>> in a source file the full "GPL v2.0 or later" header text will be
>> replaced by a single line:
>
> I think we have a winner for this round of u-boot commit statistics ;-)
>
> For the MXS part and PXA part, series:
>
> Acked-by: Marek Vasut <marex@denx.de>


Wow this was a huge meal and I did the whole menu...

Reviewed-by: Roger Meier <r.meier@siemens.com>

Great to see such a resourceful approach to simplify the licensing topic.
Thank you Wolfgang Denk for this effort!


I have one question related to the following exception that was  
removed from COPYING file:
--- a/COPYING
+++ b/Licenses/gpl-2.0.txt
-  NOTE! This license does *not* cover the so-called "standalone"
-applications that use U-Boot services by means of the jump table
-provided by U-Boot exactly for this purpose - this is merely
-considered normal use of U-Boot, and does *not* fall under the
-heading of "derived work".

Do you plan to add this info to the new Licenses/README file again or  
do you consider to create kind of a U-Boot-exception?


thanks again and good night!
-roger

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-10  7:37 [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Wolfgang Denk
  2013-07-10  7:37 ` [U-Boot] [PATCH 1/5] Licenses: introduce SPDX Unique Lincense Identifiers Wolfgang Denk
  2013-07-11 20:35 ` [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Marek Vasut
@ 2013-07-15 21:06 ` Stephen Warren
  2013-07-24  9:51 ` Graeme Russ
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 15+ messages in thread
From: Stephen Warren @ 2013-07-15 21:06 UTC (permalink / raw)
  To: u-boot

On 07/10/2013 01:37 AM, Wolfgang Denk wrote:
> Like many other projects, U-Boot has a tradition of including big
> blocks of License headers in all files.  This not only blows up the
> source code with mostly redundant information, but also makes it very
> difficult to generate License Clearing Reports.  An additional problem
> is that even the same lincenses are referred to by a number of
> slightly varying text blocks (full, abbreviated, different
> indentation, line wrapping and/or white space, with obsolete address
> information, ...) which makes automatic processing a nightmare.
> 
> To make this easier, such license headers in the source files will be
> replaced with a single line reference to Unique Lincense Identifiers
> as defined by the Linux Foundation's SPDX project [1].  For example,
> in a source file the full "GPL v2.0 or later" header text will be
> replaced by a single line:
> 
>         SPDX-License-Identifier:        GPL-2.0+
> 
> We use the SPDX Unique Lincense Identifiers here; these are available
> at [2].
> 
> Note: From the legal point of view, this patch is supposed to be only
> a change to the textual representation of the license information,
> but in no way any change to the actual license terms. With this patch
> applied, all files will still be licensed under the same terms they
> were before.

NVIDIA legal pointed out one potential issue with removing the license
headers from files, and simply pointing at a separate license file:

Some licenses include text that states that redistribution in source
forms requires the license text (or a list of conditions) to be
reproduced. Arguably, reproducing them in the separate license files
you've added to the Licenses directory covers this. However, there may
be a fine line here, and the complete answer may vary from license to
license depending on the exact wording.

Still, I don't think this issue was thought to apply to any of the
licenses that you've touched in this series, so we could simply defer
this discussion until it's thought to apply in practice, if that ever
happens.

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-12 19:52   ` Roger Meier
@ 2013-07-23 15:44     ` Wolfgang Denk
  2013-07-24  7:20     ` [U-Boot] [PATCH 1/5 v2] Licenses: introduce SPDX Unique Lincense Identifiers Wolfgang Denk
  2013-07-24  9:05     ` [U-Boot] [PATCH 1/5 v3] Licenses: introduce SPDX Unique License Identifiers Wolfgang Denk
  2 siblings, 0 replies; 15+ messages in thread
From: Wolfgang Denk @ 2013-07-23 15:44 UTC (permalink / raw)
  To: u-boot

Dear Roger,

In message <20130712195225.Horde.NBpZy2dGxLsDxq54jlmWuw1@mail.meier-kuhn.ch> you wrote:
> 
> -  NOTE! This license does *not* cover the so-called "standalone"
> -applications that use U-Boot services by means of the jump table
> -provided by U-Boot exactly for this purpose - this is merely
> -considered normal use of U-Boot, and does *not* fall under the
> -heading of "derived work".
> 
> Do you plan to add this info to the new Licenses/README file again or  
> do you consider to create kind of a U-Boot-exception?

I've not really decided yet if I will (re-) add this to the
Licenses/README, or if it should rather go into a separate
Licenses/Exceptions file.  But I will (re-) add it one way or another
in one of the following patches.

Thanks for the review.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
C++ was an interesting and valuable experiment, but we've learned its
lessons and it's time to move on.
                            - Peter Curran in <DCqM4z.BxB@isgtec.com>

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

* [U-Boot] [PATCH 1/5 v2] Licenses: introduce SPDX Unique Lincense Identifiers
  2013-07-12 19:52   ` Roger Meier
  2013-07-23 15:44     ` Wolfgang Denk
@ 2013-07-24  7:20     ` Wolfgang Denk
  2013-07-24  9:05     ` [U-Boot] [PATCH 1/5 v3] Licenses: introduce SPDX Unique License Identifiers Wolfgang Denk
  2 siblings, 0 replies; 15+ messages in thread
From: Wolfgang Denk @ 2013-07-24  7:20 UTC (permalink / raw)
  To: u-boot

Like many other projects, U-Boot has a tradition of including big
blocks of License headers in all files.  This not only blows up the
source code with mostly redundant information, but also makes it very
difficult to generate License Clearing Reports.  An additional problem
is that even the same lincenses are referred to by a number of
slightly varying text blocks (full, abbreviated, different
indentation, line wrapping and/or white space, with obsolete address
information, ...) which makes automatic processing a nightmare.

To make this easier, such license headers in the source files will be
replaced with a single line reference to Unique Lincense Identifiers
as defined by the Linux Foundation's SPDX project [1].  For example,
in a source file the full "GPL v2.0 or later" header text will be
replaced by a single line:

        SPDX-License-Identifier:        GPL-2.0+

We use the SPDX Unique Lincense Identifiers here; these are available
at [2].

Note: From the legal point of view, this patch is supposed to be only
a change to the textual representation of the license information,
but in no way any change to the actual license terms. With this patch
applied, all files will still be licensed under the same terms they
were before.

Note 2: The apparent difference between the old "COPYING" and the new
"Licenses/gpl-2.0.txt" only results from switching to the upstream
version of the license which is differently formatted; there are not
any actual changes to the content.

Note 3: There are some recurring questions about license issues, such
as:
    - Is a "All Rights Reserved" clause a problem in GPL code?
    - Are files without any license header a problem?
    - Do we need license headers at all?

The following excerpt from an e-mail by Daniel B. Ravicher should help
with these:

| Message-ID: <4ADF8CAA.5030808@softwarefreedom.org>
| Date: Wed, 21 Oct 2009 18:35:22 -0400
| From: "Daniel B. Ravicher" <ravicher@softwarefreedom.org>
| To: Wolfgang Denk <wd@denx.de>
| Subject: Re: GPL and license cleanup questions
|
| Mr. Denk,
|
| Wolfgang Denk wrote:
| > - There are a number of files which do not include any specific
| > license information at all. Is it correct to assume that these files
| > are automatically covered by the "GPL v2 or later" clause as
| > specified by the COPYING file in the top level directory of the
| > U-Boot source tree?
|
| That is a very fact specific analysis and could be different across the
| various files.  However, if the contributor could reasonably be expected
| to have known that the project was licensed GPLv2 or later at the time
| she made her contribution, then a reasonably implication is that she
| consented to her contributions being distributed under those terms.
|
| > - Do such files need any clean up, for example should we add GPL
| > headers to them, or is this not needed?
|
| If the project as a whole is licensed under clear terms, you need not
| identify those same terms in each file, although there is no harm in
| doing so.
|
| > - There are other files, which include both a GPL license header
| > _plus_ some copyright note with an "All Rights Reserved" clause. It
| > has been my understanding that this is a conflict, and me must ask
| > the copyright holders to remove such "All Rights Reserved" clauses.
| > But then, some people claim that "All Rights Reserved" is a no-op
| > nowadays. License checking tools (like OSLC) seem to indicate this is
| > a problem, but then we see quite a lot of "All rights reserved" in
| > BSD-licensed files in gcc and glibc. So what is the correct way to
| > deal with such files?
|
| It is not a conflict to grant a license and also reserve all rights, as
| implicit in that language is that you are reserving all "other" rights
| not granted in the license.  Thus, a file with "Licensed under GPL, All
| Rights Reserved" would mean that it is licensed under the GPL, but no
| other rights are given to copy, modify or redistribute it.
|
| Warm regards,
| --Dan
|
| Daniel B. Ravicher, Legal Director
| Software Freedom Law Center (SFLC) and Moglen Ravicher LLC
| 1995 Broadway, 17th Fl., New York, NY 10023
| (212) 461-1902 direct  (212) 580-0800 main  (212) 580-0898 fax
| ravicher at softwarefreedom.org   www.softwarefreedom.org

[1] http://spdx.org/
[2] http://spdx.org/licenses/

Signed-off-by: Wolfgang Denk <wd@denx.de>
---
changes for v2:
	- Re-added the general introductory part to Licenses/README
	- Also re-added the standalone license exception (as separate
	  file Licenses/Exceptions)

 Licenses/Exceptions             |  15 ++++++
 Licenses/README                 |  49 +++++++++++++++++
 COPYING => Licenses/gpl-2.0.txt | 113 ++++++++++++++++++++++++++--------------
 MAKEALL                         |   2 +
 Makefile                        |  20 +------
 README                          |  20 +------
 config.mk                       |  21 +-------
 mkconfig                        |   4 +-
 rules.mk                        |  21 +-------
 9 files changed, 150 insertions(+), 115 deletions(-)
 create mode 100644 Licenses/Exceptions
 create mode 100644 Licenses/README
 rename COPYING => Licenses/gpl-2.0.txt (81%)

diff --git a/Licenses/Exceptions b/Licenses/Exceptions
new file mode 100644
index 0000000..c9b3cd9
--- /dev/null
+++ b/Licenses/Exceptions
@@ -0,0 +1,15 @@
+
+GPL License Exception:
+
+Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+,
+this does *not* cover the so-called "standalone" applications that
+use U-Boot services by means of the jump table provided by U-Boot
+exactly for this purpose - this is merely considered normal use of
+U-Boot, and does *not* fall under the heading of "derived work".
+
+  The header files "include/image.h" and "arch/*/include/asm/u-boot.h"
+define interfaces to U-Boot.  Including these (unmodified) header
+files in another file is considered normal use of U-Boot, and does
+*not* fall under the heading of "derived work".
+-- Wolfgang Denk
+
diff --git a/Licenses/README b/Licenses/README
new file mode 100644
index 0000000..8371ba7
--- /dev/null
+++ b/Licenses/README
@@ -0,0 +1,49 @@
+  U-Boot is Free Software.  It is copyrighted by Wolfgang Denk and
+many others who contributed code (see the actual source code and the
+git commit messages for details).  You can redistribute U-Boot and/or
+modify it under the terms of version 2 of the GNU General Public
+License as published by the Free Software Foundation.  Most of it can
+also be distributed, at your option, under any later version of the
+GNU General Public License -- see individual files for exceptions.
+
+  NOTE! This license does *not* cover the so-called "standalone"
+applications that use U-Boot services by means of the jump table
+provided by U-Boot exactly for this purpose - this is merely
+considered normal use of U-Boot, and does *not* fall under the
+heading of "derived work" -- see file  Licenses/Exceptions  for
+details.
+
+  Also note that the GPL and the other licenses are copyrighted by
+the Free Software Foundation and other organizations, but the
+instance of code that they refer to (the U-Boot source code) is
+copyrighted by me and others who actually wrote it.
+-- Wolfgang Denk
+
+
+Like many other projects, U-Boot has a tradition of including big
+blocks of License headers in all files.  This not only blows up the
+source code with mostly redundant information, but also makes it very
+difficult to generate License Clearing Reports.  An additional problem
+is that even the same lincenses are referred to by a number of
+slightly varying text blocks (full, abbreviated, different
+indentation, line wrapping and/or white space, with obsolete address
+information, ...) which makes automatic processing a nightmare.
+
+To make this easier, such license headers in the source files will be
+replaced with a single line reference to Unique Lincense Identifiers
+as defined by the Linux Foundation's SPDX project [1].  For example,
+in a source file the full "GPL v2.0 or later" header text will be
+replaced by a single line:
+
+	SPDX-License-Identifier:	GPL-2.0+
+
+We use the SPDX Unique Lincense Identifiers here; these are available
+at [2].
+
+[1] http://spdx.org/
+[2] http://spdx.org/licenses/
+
+Full name					SPDX Identifier	OSI Approved	File name	URI
+=======================================================================================================================================
+GNU General Public License v2.0 only		GPL-2.0		Y		gpl-2.0.txt	http://www.gnu.org/licenses/gpl-2.0.txt
+GNU General Public License v2.0 or later	GPL-2.0+	Y		gpl-2.0.txt	http://www.gnu.org/licenses/gpl-2.0.txt
diff --git a/COPYING b/Licenses/gpl-2.0.txt
similarity index 81%
rename from COPYING
rename to Licenses/gpl-2.0.txt
index 44d1983..d159169 100644
--- a/COPYING
+++ b/Licenses/gpl-2.0.txt
@@ -1,38 +1,12 @@
-  U-Boot is Free Software.  It is copyrighted by Wolfgang Denk and
-many others who contributed code (see the actual source code for
-details).  You can redistribute U-Boot and/or modify it under the
-terms of version 2 of the GNU General Public License as published by
-the Free Software Foundation.  Most of it can also be distributed,
-at your option, under any later version of the GNU General Public
-License -- see individual files for exceptions.
-
-  NOTE! This license does *not* cover the so-called "standalone"
-applications that use U-Boot services by means of the jump table
-provided by U-Boot exactly for this purpose - this is merely
-considered normal use of U-Boot, and does *not* fall under the
-heading of "derived work".
-
-  The header files "include/image.h" and "include/asm-*/u-boot.h"
-define interfaces to U-Boot. Including these (unmodified) header
-files in another file is considered normal use of U-Boot, and does
-*not* fall under the heading of "derived work".
-
-  Also note that the GPL below is copyrighted by the Free Software
-Foundation, but the instance of code that it refers to (the U-Boot
-source code) is copyrighted by me and others who actually wrote it.
--- Wolfgang Denk
-
-=======================================================================
-
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
-			    Preamble
+                            Preamble
 
   The licenses for most software are designed to take away your
 freedom to share and change it.  By contrast, the GNU General Public
@@ -41,7 +15,7 @@ software--to make sure the software is free for all its users.  This
 General Public License applies to most of the Free Software
 Foundation's software and to any other program whose authors commit to
 using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
+the GNU Lesser General Public License instead.)  You can apply it to
 your programs, too.
 
   When we speak of free software, we are referring to freedom, not
@@ -81,8 +55,8 @@ patent must be licensed for everyone's free use or not licensed at all.
 
   The precise terms and conditions for copying, distribution and
 modification follow.
-\f
-		    GNU GENERAL PUBLIC LICENSE
+
+                    GNU GENERAL PUBLIC LICENSE
    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 
   0. This License applies to any program or other work which contains
@@ -136,7 +110,7 @@ above, provided that you also meet all of these conditions:
     License.  (Exception: if the Program itself is interactive but
     does not normally print such an announcement, your work based on
     the Program is not required to print an announcement.)
-\f
+
 These requirements apply to the modified work as a whole.  If
 identifiable sections of that work are not derived from the Program,
 and can be reasonably considered independent and separate works in
@@ -194,7 +168,7 @@ access to copy from a designated place, then offering equivalent
 access to copy the source code from the same place counts as
 distribution of the source code, even though third parties are not
 compelled to copy the source along with the object code.
-\f
+
   4. You may not copy, modify, sublicense, or distribute the Program
 except as expressly provided under this License.  Any attempt
 otherwise to copy, modify, sublicense or distribute the Program is
@@ -251,7 +225,7 @@ impose that choice.
 
 This section is intended to make thoroughly clear what is believed to
 be a consequence of the rest of this License.
-\f
+
   8. If the distribution and/or use of the Program is restricted in
 certain countries either by patents or by copyrighted interfaces, the
 original copyright holder who places the Program under this License
@@ -281,7 +255,7 @@ make exceptions for this.  Our decision will be guided by the two goals
 of preserving the free status of all derivatives of our free software and
 of promoting the sharing and reuse of software generally.
 
-			    NO WARRANTY
+                            NO WARRANTY
 
   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
 FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
@@ -303,4 +277,63 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
 PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGES.
 
-		     END OF TERMS AND CONDITIONS
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/MAKEALL b/MAKEALL
index 2e16e0d..4bc1e56 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -2,6 +2,8 @@
 # Tool mainly for U-Boot Quality Assurance: build one or more board
 # configurations with minimal verbosity, showing only warnings and
 # errors.
+#
+# SPDX-License-Identifier:	GPL-2.0+
 
 usage()
 {
diff --git a/Makefile b/Makefile
index 446c2f8..4a0c773 100644
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,8 @@
 #
-# (C) Copyright 2000-2012
+# (C) Copyright 2000-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundatio; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 VERSION = 2013
diff --git a/README b/README
index 85e5a8d..231910e 100644
--- a/README
+++ b/README
@@ -1,24 +1,8 @@
 #
-# (C) Copyright 2000 - 2012
+# (C) Copyright 2000 - 2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 Summary:
diff --git a/config.mk b/config.mk
index 81c2584..7888846 100644
--- a/config.mk
+++ b/config.mk
@@ -1,26 +1,9 @@
 #
-# (C) Copyright 2000-2006
+# (C) Copyright 2000-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
+# SPDX-License-Identifier:	GPL-2.0+
 #
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
-#
-
 #########################################################################
 
 # Set shell to bash if possible, otherwise fall back to sh
diff --git a/mkconfig b/mkconfig
index 73f852e..816ae3d 100755
--- a/mkconfig
+++ b/mkconfig
@@ -5,7 +5,9 @@
 #
 # Parameters:  Target  Architecture  CPU  Board [VENDOR] [SOC]
 #
-# (C) 2002-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
+# (C) 2002-2013 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
+#
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 APPEND=no	# Default: Create new config file
diff --git a/rules.mk b/rules.mk
index fa929f9..f4510b7 100644
--- a/rules.mk
+++ b/rules.mk
@@ -1,26 +1,9 @@
 #
-# (C) Copyright 2006
+# (C) Copyright 2006-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
+# SPDX-License-Identifier:	GPL-2.0+
 #
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
-#
-
 #########################################################################
 
 _depend:	$(obj).depend
-- 
1.8.1.4

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

* [U-Boot] [PATCH 1/5 v3] Licenses: introduce SPDX Unique License Identifiers
  2013-07-12 19:52   ` Roger Meier
  2013-07-23 15:44     ` Wolfgang Denk
  2013-07-24  7:20     ` [U-Boot] [PATCH 1/5 v2] Licenses: introduce SPDX Unique Lincense Identifiers Wolfgang Denk
@ 2013-07-24  9:05     ` Wolfgang Denk
  2013-07-24 13:14       ` [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file Tom Rini
  2 siblings, 1 reply; 15+ messages in thread
From: Wolfgang Denk @ 2013-07-24  9:05 UTC (permalink / raw)
  To: u-boot

Like many other projects, U-Boot has a tradition of including big
blocks of License headers in all files.  This not only blows up the
source code with mostly redundant information, but also makes it very
difficult to generate License Clearing Reports.  An additional problem
is that even the same licenses are referred to by a number of
slightly varying text blocks (full, abbreviated, different
indentation, line wrapping and/or white space, with obsolete address
information, ...) which makes automatic processing a nightmare.

To make this easier, such license headers in the source files will be
replaced with a single line reference to Unique License Identifiers
as defined by the Linux Foundation's SPDX project [1].  For example,
in a source file the full "GPL v2.0 or later" header text will be
replaced by a single line:

        SPDX-License-Identifier:        GPL-2.0+

We use the SPDX Unique License Identifiers here; these are available
at [2].

Note: From the legal point of view, this patch is supposed to be only
a change to the textual representation of the license information,
but in no way any change to the actual license terms. With this patch
applied, all files will still be licensed under the same terms they
were before.

Note 2: The apparent difference between the old "COPYING" and the new
"Licenses/gpl-2.0.txt" only results from switching to the upstream
version of the license which is differently formatted; there are not
any actual changes to the content.

Note 3: There are some recurring questions about license issues, such
as:
    - Is a "All Rights Reserved" clause a problem in GPL code?
    - Are files without any license header a problem?
    - Do we need license headers at all?

The following excerpt from an e-mail by Daniel B. Ravicher should help
with these:

| Message-ID: <4ADF8CAA.5030808@softwarefreedom.org>
| Date: Wed, 21 Oct 2009 18:35:22 -0400
| From: "Daniel B. Ravicher" <ravicher@softwarefreedom.org>
| To: Wolfgang Denk <wd@denx.de>
| Subject: Re: GPL and license cleanup questions
|
| Mr. Denk,
|
| Wolfgang Denk wrote:
| > - There are a number of files which do not include any specific
| > license information at all. Is it correct to assume that these files
| > are automatically covered by the "GPL v2 or later" clause as
| > specified by the COPYING file in the top level directory of the
| > U-Boot source tree?
|
| That is a very fact specific analysis and could be different across the
| various files.  However, if the contributor could reasonably be expected
| to have known that the project was licensed GPLv2 or later at the time
| she made her contribution, then a reasonably implication is that she
| consented to her contributions being distributed under those terms.
|
| > - Do such files need any clean up, for example should we add GPL
| > headers to them, or is this not needed?
|
| If the project as a whole is licensed under clear terms, you need not
| identify those same terms in each file, although there is no harm in
| doing so.
|
| > - There are other files, which include both a GPL license header
| > _plus_ some copyright note with an "All Rights Reserved" clause. It
| > has been my understanding that this is a conflict, and me must ask
| > the copyright holders to remove such "All Rights Reserved" clauses.
| > But then, some people claim that "All Rights Reserved" is a no-op
| > nowadays. License checking tools (like OSLC) seem to indicate this is
| > a problem, but then we see quite a lot of "All rights reserved" in
| > BSD-licensed files in gcc and glibc. So what is the correct way to
| > deal with such files?
|
| It is not a conflict to grant a license and also reserve all rights, as
| implicit in that language is that you are reserving all "other" rights
| not granted in the license.  Thus, a file with "Licensed under GPL, All
| Rights Reserved" would mean that it is licensed under the GPL, but no
| other rights are given to copy, modify or redistribute it.
|
| Warm regards,
| --Dan
|
| Daniel B. Ravicher, Legal Director
| Software Freedom Law Center (SFLC) and Moglen Ravicher LLC
| 1995 Broadway, 17th Fl., New York, NY 10023
| (212) 461-1902 direct  (212) 580-0800 main  (212) 580-0898 fax
| ravicher at softwarefreedom.org   www.softwarefreedom.org

[1] http://spdx.org/
[2] http://spdx.org/licenses/

Signed-off-by: Wolfgang Denk <wd@denx.de>
---
changes for v3: fix spelling errors
changes for v2:
	- Re-added the general introductory part to Licenses/README
	- Also re-added the standalone license exception (as separate
	  file Licenses/Exceptions)

 Licenses/Exceptions             |  15 ++++++
 Licenses/README                 |  49 +++++++++++++++++
 COPYING => Licenses/gpl-2.0.txt | 113 ++++++++++++++++++++++++++--------------
 MAKEALL                         |   2 +
 Makefile                        |  20 +------
 README                          |  20 +------
 config.mk                       |  21 +-------
 mkconfig                        |   4 +-
 rules.mk                        |  21 +-------
 9 files changed, 150 insertions(+), 115 deletions(-)
 create mode 100644 Licenses/Exceptions
 create mode 100644 Licenses/README
 rename COPYING => Licenses/gpl-2.0.txt (81%)

diff --git a/Licenses/Exceptions b/Licenses/Exceptions
new file mode 100644
index 0000000..c9b3cd9
--- /dev/null
+++ b/Licenses/Exceptions
@@ -0,0 +1,15 @@
+
+GPL License Exception:
+
+Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+,
+this does *not* cover the so-called "standalone" applications that
+use U-Boot services by means of the jump table provided by U-Boot
+exactly for this purpose - this is merely considered normal use of
+U-Boot, and does *not* fall under the heading of "derived work".
+
+  The header files "include/image.h" and "arch/*/include/asm/u-boot.h"
+define interfaces to U-Boot.  Including these (unmodified) header
+files in another file is considered normal use of U-Boot, and does
+*not* fall under the heading of "derived work".
+-- Wolfgang Denk
+
diff --git a/Licenses/README b/Licenses/README
new file mode 100644
index 0000000..8371ba7
--- /dev/null
+++ b/Licenses/README
@@ -0,0 +1,49 @@
+  U-Boot is Free Software.  It is copyrighted by Wolfgang Denk and
+many others who contributed code (see the actual source code and the
+git commit messages for details).  You can redistribute U-Boot and/or
+modify it under the terms of version 2 of the GNU General Public
+License as published by the Free Software Foundation.  Most of it can
+also be distributed, at your option, under any later version of the
+GNU General Public License -- see individual files for exceptions.
+
+  NOTE! This license does *not* cover the so-called "standalone"
+applications that use U-Boot services by means of the jump table
+provided by U-Boot exactly for this purpose - this is merely
+considered normal use of U-Boot, and does *not* fall under the
+heading of "derived work" -- see file  Licenses/Exceptions  for
+details.
+
+  Also note that the GPL and the other licenses are copyrighted by
+the Free Software Foundation and other organizations, but the
+instance of code that they refer to (the U-Boot source code) is
+copyrighted by me and others who actually wrote it.
+-- Wolfgang Denk
+
+
+Like many other projects, U-Boot has a tradition of including big
+blocks of License headers in all files.  This not only blows up the
+source code with mostly redundant information, but also makes it very
+difficult to generate License Clearing Reports.  An additional problem
+is that even the same licenses are referred to by a number of
+slightly varying text blocks (full, abbreviated, different
+indentation, line wrapping and/or white space, with obsolete address
+information, ...) which makes automatic processing a nightmare.
+
+To make this easier, such license headers in the source files will be
+replaced with a single line reference to Unique License Identifiers
+as defined by the Linux Foundation's SPDX project [1].  For example,
+in a source file the full "GPL v2.0 or later" header text will be
+replaced by a single line:
+
+	SPDX-License-Identifier:	GPL-2.0+
+
+We use the SPDX Unique License Identifiers here; these are available
+at [2].
+
+[1] http://spdx.org/
+[2] http://spdx.org/licenses/
+
+Full name					SPDX Identifier	OSI Approved	File name	URI
+=======================================================================================================================================
+GNU General Public License v2.0 only		GPL-2.0		Y		gpl-2.0.txt	http://www.gnu.org/licenses/gpl-2.0.txt
+GNU General Public License v2.0 or later	GPL-2.0+	Y		gpl-2.0.txt	http://www.gnu.org/licenses/gpl-2.0.txt
diff --git a/COPYING b/Licenses/gpl-2.0.txt
similarity index 81%
rename from COPYING
rename to Licenses/gpl-2.0.txt
index 44d1983..d159169 100644
--- a/COPYING
+++ b/Licenses/gpl-2.0.txt
@@ -1,38 +1,12 @@
-  U-Boot is Free Software.  It is copyrighted by Wolfgang Denk and
-many others who contributed code (see the actual source code for
-details).  You can redistribute U-Boot and/or modify it under the
-terms of version 2 of the GNU General Public License as published by
-the Free Software Foundation.  Most of it can also be distributed,
-at your option, under any later version of the GNU General Public
-License -- see individual files for exceptions.
-
-  NOTE! This license does *not* cover the so-called "standalone"
-applications that use U-Boot services by means of the jump table
-provided by U-Boot exactly for this purpose - this is merely
-considered normal use of U-Boot, and does *not* fall under the
-heading of "derived work".
-
-  The header files "include/image.h" and "include/asm-*/u-boot.h"
-define interfaces to U-Boot. Including these (unmodified) header
-files in another file is considered normal use of U-Boot, and does
-*not* fall under the heading of "derived work".
-
-  Also note that the GPL below is copyrighted by the Free Software
-Foundation, but the instance of code that it refers to (the U-Boot
-source code) is copyrighted by me and others who actually wrote it.
--- Wolfgang Denk
-
-=======================================================================
-
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
-			    Preamble
+                            Preamble
 
   The licenses for most software are designed to take away your
 freedom to share and change it.  By contrast, the GNU General Public
@@ -41,7 +15,7 @@ software--to make sure the software is free for all its users.  This
 General Public License applies to most of the Free Software
 Foundation's software and to any other program whose authors commit to
 using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
+the GNU Lesser General Public License instead.)  You can apply it to
 your programs, too.
 
   When we speak of free software, we are referring to freedom, not
@@ -81,8 +55,8 @@ patent must be licensed for everyone's free use or not licensed at all.
 
   The precise terms and conditions for copying, distribution and
 modification follow.
-\f
-		    GNU GENERAL PUBLIC LICENSE
+
+                    GNU GENERAL PUBLIC LICENSE
    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 
   0. This License applies to any program or other work which contains
@@ -136,7 +110,7 @@ above, provided that you also meet all of these conditions:
     License.  (Exception: if the Program itself is interactive but
     does not normally print such an announcement, your work based on
     the Program is not required to print an announcement.)
-\f
+
 These requirements apply to the modified work as a whole.  If
 identifiable sections of that work are not derived from the Program,
 and can be reasonably considered independent and separate works in
@@ -194,7 +168,7 @@ access to copy from a designated place, then offering equivalent
 access to copy the source code from the same place counts as
 distribution of the source code, even though third parties are not
 compelled to copy the source along with the object code.
-\f
+
   4. You may not copy, modify, sublicense, or distribute the Program
 except as expressly provided under this License.  Any attempt
 otherwise to copy, modify, sublicense or distribute the Program is
@@ -251,7 +225,7 @@ impose that choice.
 
 This section is intended to make thoroughly clear what is believed to
 be a consequence of the rest of this License.
-\f
+
   8. If the distribution and/or use of the Program is restricted in
 certain countries either by patents or by copyrighted interfaces, the
 original copyright holder who places the Program under this License
@@ -281,7 +255,7 @@ make exceptions for this.  Our decision will be guided by the two goals
 of preserving the free status of all derivatives of our free software and
 of promoting the sharing and reuse of software generally.
 
-			    NO WARRANTY
+                            NO WARRANTY
 
   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
 FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
@@ -303,4 +277,63 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
 PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGES.
 
-		     END OF TERMS AND CONDITIONS
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/MAKEALL b/MAKEALL
index 2e16e0d..4bc1e56 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -2,6 +2,8 @@
 # Tool mainly for U-Boot Quality Assurance: build one or more board
 # configurations with minimal verbosity, showing only warnings and
 # errors.
+#
+# SPDX-License-Identifier:	GPL-2.0+
 
 usage()
 {
diff --git a/Makefile b/Makefile
index 446c2f8..4a0c773 100644
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,8 @@
 #
-# (C) Copyright 2000-2012
+# (C) Copyright 2000-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundatio; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 VERSION = 2013
diff --git a/README b/README
index 85e5a8d..231910e 100644
--- a/README
+++ b/README
@@ -1,24 +1,8 @@
 #
-# (C) Copyright 2000 - 2012
+# (C) Copyright 2000 - 2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 Summary:
diff --git a/config.mk b/config.mk
index 81c2584..7888846 100644
--- a/config.mk
+++ b/config.mk
@@ -1,26 +1,9 @@
 #
-# (C) Copyright 2000-2006
+# (C) Copyright 2000-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
+# SPDX-License-Identifier:	GPL-2.0+
 #
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
-#
-
 #########################################################################
 
 # Set shell to bash if possible, otherwise fall back to sh
diff --git a/mkconfig b/mkconfig
index 73f852e..816ae3d 100755
--- a/mkconfig
+++ b/mkconfig
@@ -5,7 +5,9 @@
 #
 # Parameters:  Target  Architecture  CPU  Board [VENDOR] [SOC]
 #
-# (C) 2002-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
+# (C) 2002-2013 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
+#
+# SPDX-License-Identifier:	GPL-2.0+
 #
 
 APPEND=no	# Default: Create new config file
diff --git a/rules.mk b/rules.mk
index fa929f9..f4510b7 100644
--- a/rules.mk
+++ b/rules.mk
@@ -1,26 +1,9 @@
 #
-# (C) Copyright 2006
+# (C) Copyright 2006-2013
 # Wolfgang Denk, DENX Software Engineering, wd at denx.de.
 #
-# See file CREDITS for list of people who contributed to this
-# project.
+# SPDX-License-Identifier:	GPL-2.0+
 #
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
-#
-
 #########################################################################
 
 _depend:	$(obj).depend
-- 
1.8.1.4

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-10  7:37 [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Wolfgang Denk
                   ` (2 preceding siblings ...)
  2013-07-15 21:06 ` [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Stephen Warren
@ 2013-07-24  9:51 ` Graeme Russ
  2013-07-24 13:17 ` Tom Rini
  2013-07-25 13:05 ` Tom Rini
  5 siblings, 0 replies; 15+ messages in thread
From: Graeme Russ @ 2013-07-24  9:51 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,


On Wed, Jul 10, 2013 at 5:37 PM, Wolfgang Denk <wd@denx.de> wrote:

> Like many other projects, U-Boot has a tradition of including big
> blocks of License headers in all files.  This not only blows up the
> source code with mostly redundant information, but also makes it very
> difficult to generate License Clearing Reports.  An additional problem
> is that even the same lincenses are referred to by a number of
> slightly varying text blocks (full, abbreviated, different
> indentation, line wrapping and/or white space, with obsolete address
> information, ...) which makes automatic processing a nightmare.
>
> To make this easier, such license headers in the source files will be
> replaced with a single line reference to Unique Lincense Identifiers
> as defined by the Linux Foundation's SPDX project [1].  For example,
> in a source file the full "GPL v2.0 or later" header text will be
> replaced by a single line:
>
>         SPDX-License-Identifier:        GPL-2.0+
>
>
Hi Wolfgang,

This will certainly make compliance checking a lot easier. I remember going
through and checking what licenses were used some time ago - what a mess!

I've been reading Version 1.1 of the Software Package Data Exchange (SPDX?)
Specification and I can't find any reference to using the term 'SPDX
-License-Identifier'.

What I have found, and I think would be beneficial, is details on creation
of a central SPDX file which lists all files in the package, the license
applicable for that file, and (I think most importantly) an Artifact of
Project Name which provides information on the original source project of
each file. So if we have source code taken from the Linux kernel and
modified for U-Boot, the Linux kernel would be the Artifact Project. In
theory, if the file was sources by the Linux kernel developers from
somewhere else, then the Linux kernel SPDX file would provide the next hop
in the chain. The idea being that the ancestry of the file can be traced
back to the original author and license.

The spec also calls for each source file to be SHA-1 checksummed - this
allows for very rapid verification that all source files are indeed what
have been published by the project maintainers. Would it be worthwhile
machine generating an SPDX file for the project upon each release and
publishing it on the U-Boot home page? This would also allow us to
highlight and track files with dubious license assignments with a view to
sanitising U-Boot once and for all :)

Regards,

Graeme

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

* [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file
  2013-07-24  9:05     ` [U-Boot] [PATCH 1/5 v3] Licenses: introduce SPDX Unique License Identifiers Wolfgang Denk
@ 2013-07-24 13:14       ` Tom Rini
  2013-07-24 13:36         ` Wolfgang Denk
  0 siblings, 1 reply; 15+ messages in thread
From: Tom Rini @ 2013-07-24 13:14 UTC (permalink / raw)
  To: u-boot

From: Wolfgang Denk <wd@denx.de>

The Licenses/Exceptions file describes the standalone license exception.
Add back our long-standing introductory remarks to Licenses/README and
fix a few spelling problems

Signed-off-by: Wolfgang Denk <wd@denx.de>
[trini: Grab differences between v1 and v3, apply separately, to avoid a
new branch on Wolfgang's side]
Signed-off-by: Tom Rini <trini@ti.com>
---
 Licenses/Exceptions |   15 +++++++++++++++
 Licenses/README     |   32 +++++++++++++++++++++++++++-----
 2 files changed, 42 insertions(+), 5 deletions(-)
 create mode 100644 Licenses/Exceptions

diff --git a/Licenses/Exceptions b/Licenses/Exceptions
new file mode 100644
index 0000000..c9b3cd9
--- /dev/null
+++ b/Licenses/Exceptions
@@ -0,0 +1,15 @@
+
+GPL License Exception:
+
+Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+,
+this does *not* cover the so-called "standalone" applications that
+use U-Boot services by means of the jump table provided by U-Boot
+exactly for this purpose - this is merely considered normal use of
+U-Boot, and does *not* fall under the heading of "derived work".
+
+  The header files "include/image.h" and "arch/*/include/asm/u-boot.h"
+define interfaces to U-Boot.  Including these (unmodified) header
+files in another file is considered normal use of U-Boot, and does
+*not* fall under the heading of "derived work".
+-- Wolfgang Denk
+
diff --git a/Licenses/README b/Licenses/README
index 68830b9..b1a59cc 100644
--- a/Licenses/README
+++ b/Licenses/README
@@ -1,21 +1,43 @@
+  U-Boot is Free Software.  It is copyrighted by Wolfgang Denk and
+many others who contributed code (see the actual source code and the
+git commit messages for details).  You can redistribute U-Boot and/or
+modify it under the terms of version 2 of the GNU General Public
+License as published by the Free Software Foundation.  Most of it can
+also be distributed, at your option, under any later version of the
+GNU General Public License -- see individual files for exceptions.
+
+  NOTE! This license does *not* cover the so-called "standalone"
+applications that use U-Boot services by means of the jump table
+provided by U-Boot exactly for this purpose - this is merely
+considered normal use of U-Boot, and does *not* fall under the
+heading of "derived work" -- see file  Licenses/Exceptions  for
+details.
+
+  Also note that the GPL and the other licenses are copyrighted by
+the Free Software Foundation and other organizations, but the
+instance of code that they refer to (the U-Boot source code) is
+copyrighted by me and others who actually wrote it.
+-- Wolfgang Denk
+
 
 Like many other projects, U-Boot has a tradition of including big
 blocks of License headers in all files.  This not only blows up the
 source code with mostly redundant information, but also makes it very
 difficult to generate License Clearing Reports.  An additional problem
-is that even the same linces are referred to by a number of slightly
-varying text blocks (full, abbreviated, with obsolted / older address
+is that even the same licenses are referred to by a number of
+slightly varying text blocks (full, abbreviated, different
+indentation, line wrapping and/or white space, with obsolete address
 information, ...) which makes automatic processing a nightmare.
 
 To make this easier, such license headers in the source files will be
-replaced with a single line reference to Unique Lincense Identifiers
+replaced with a single line reference to Unique License Identifiers
 as defined by the Linux Foundation's SPDX project [1].  For example,
-in a C source the full "GPL v2.0 or later" header text can now be
+in a source file the full "GPL v2.0 or later" header text will be
 replaced by a single line:
 
 	SPDX-License-Identifier:	GPL-2.0+
 
-We use the SPDX Unique Lincense Identifiers here; these are available
+We use the SPDX Unique License Identifiers here; these are available
 at [2].
 
 [1] http://spdx.org/
-- 
1.7.9.5

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-10  7:37 [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Wolfgang Denk
                   ` (3 preceding siblings ...)
  2013-07-24  9:51 ` Graeme Russ
@ 2013-07-24 13:17 ` Tom Rini
  2013-07-25 13:05 ` Tom Rini
  5 siblings, 0 replies; 15+ messages in thread
From: Tom Rini @ 2013-07-24 13:17 UTC (permalink / raw)
  To: u-boot

On Wed, Jul 10, 2013 at 09:37:36AM +0200, Wolfgang Denk wrote:

> Like many other projects, U-Boot has a tradition of including big
> blocks of License headers in all files.  This not only blows up the
> source code with mostly redundant information, but also makes it very
> difficult to generate License Clearing Reports.  An additional problem
> is that even the same lincenses are referred to by a number of
> slightly varying text blocks (full, abbreviated, different
> indentation, line wrapping and/or white space, with obsolete address
> information, ...) which makes automatic processing a nightmare.
> 
> To make this easier, such license headers in the source files will be
> replaced with a single line reference to Unique Lincense Identifiers
> as defined by the Linux Foundation's SPDX project [1].  For example,
> in a source file the full "GPL v2.0 or later" header text will be
> replaced by a single line:
> 
>         SPDX-License-Identifier:        GPL-2.0+
> 
> We use the SPDX Unique Lincense Identifiers here; these are available
> at [2].
> 
> Note: From the legal point of view, this patch is supposed to be only
> a change to the textual representation of the license information,
> but in no way any change to the actual license terms. With this patch
> applied, all files will still be licensed under the same terms they
> were before.
> 
> Note 2: The apparent difference between the old "COPYING" and the new
> "Licenses/gpl-2.0.txt" only results from switching to the upstream
> version of the license which is differently formatted; there are not
> any actual changes to the content.
> 
> Note 3: There are some recurring questions about linense issues, such
> as:
>     - Is a "All Rights Reserved" clause a problem in GPL code?
>     - Are files without any license header a problem?
>     - Do we need license headers at all?
> 
> The following excerpt from an e-mail by Daniel B. Ravicher should help
> with these:
> 
> | Message-ID: <4ADF8CAA.5030808@softwarefreedom.org>
> | Date: Wed, 21 Oct 2009 18:35:22 -0400
> | From: "Daniel B. Ravicher" <ravicher@softwarefreedom.org>
> | To: Wolfgang Denk <wd@denx.de>
> | Subject: Re: GPL and license cleanup questions
> |
> | Mr. Denk,
> |
> | Wolfgang Denk wrote:
> | > - There are a number of files which do not include any specific
> | > license information at all. Is it correct to assume that these files
> | > are automatically covered by the "GPL v2 or later" clause as
> | > specified by the COPYING file in the top level directory of the
> | > U-Boot source tree?
> |
> | That is a very fact specific analysis and could be different across the
> | various files.  However, if the contributor could reasonably be expected
> | to have known that the project was licensed GPLv2 or later at the time
> | she made her contribution, then a reasonably implication is that she
> | consented to her contributions being distributed under those terms.
> |
> | > - Do such files need any clean up, for example should we add GPL
> | > headers to them, or is this not needed?
> |
> | If the project as a whole is licensed under clear terms, you need not
> | identify those same terms in each file, although there is no harm in
> | doing so.
> |
> | > - There are other files, which include both a GPL license header
> | > _plus_ some copyright note with an "All Rights Reserved" clause. It
> | > has been my understanding that this is a conflict, and me must ask
> | > the copyright holders to remove such "All Rights Reserved" clauses.
> | > But then, some people claim that "All Rights Reserved" is a no-op
> | > nowadays. License checking tools (like OSLC) seem to indicate this is
> | > a problem, but then we see quite a lot of "All rights reserved" in
> | > BSD-licensed files in gcc and glibc. So what is the correct way to
> | > deal with such files?
> |
> | It is not a conflict to grant a license and also reserve all rights, as
> | implicit in that language is that you are reserving all "other" rights
> | not granted in the license.  Thus, a file with "Licensed under GPL, All
> | Rights Reserved" would mean that it is licensed under the GPL, but no
> | other rights are given to copy, modify or redistribute it.
> |
> | Warm regards,
> | --Dan
> |
> | Daniel B. Ravicher, Legal Director
> | Software Freedom Law Center (SFLC) and Moglen Ravicher LLC
> | 1995 Broadway, 17th Fl., New York, NY 10023
> | (212) 461-1902 direct  (212) 580-0800 main  (212) 580-0898 fax
> | ravicher at softwarefreedom.org   www.softwarefreedom.org
> 
> [1] http://spdx.org/
> [2] http://spdx.org/licenses/
> 
> 
> Especially patch 2 is way too big for posting on the ML (patch
> size: 6.5M, 5769 files changed, 6007 insertions, 91862 deletions).
> Patches 2/5 through 5/5 will therefore NOT be posted here.
> Instead, I pushed this code into the "SPDX-License-IDs" branch of the
> u-boot-testing repository, see
> 
> 	git://git.denx.de/u-boot-testing.git
> 	http://git.denx.de/u-boot-testing.git
> resp.
> 	http://git.denx.de/?p=u-boot/u-boot-testing.git;a=shortlog;h=refs/heads/SPDX-License-IDs
> 
> 
> Signed-off-by: Wolfgang Denk <wd@denx.de>

Along with the patch to fix common/cmd_io.c (the only file to have been
badly mangled that I can find) that I just posted, along with a patch
that takes the changes you made in v2 and v3 of 1/5, and does that as a
separate patch (so I can re-use the git tree of yours as-is), this is
applied to u-boot/master and I'll push it out soon (in case you think we
need to squash things back into the first patch).  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130724/2708bd15/attachment.pgp>

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

* [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file
  2013-07-24 13:14       ` [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file Tom Rini
@ 2013-07-24 13:36         ` Wolfgang Denk
  2013-07-24 15:16           ` Tom Rini
  0 siblings, 1 reply; 15+ messages in thread
From: Wolfgang Denk @ 2013-07-24 13:36 UTC (permalink / raw)
  To: u-boot

Dear Tom,

In message <1374671685-21577-1-git-send-email-trini@ti.com> you wrote:
> 
> The Licenses/Exceptions file describes the standalone license exception.
> Add back our long-standing introductory remarks to Licenses/README and
> fix a few spelling problems
> 
> Signed-off-by: Wolfgang Denk <wd@denx.de>
> [trini: Grab differences between v1 and v3, apply separately, to avoid a
> new branch on Wolfgang's side]
> Signed-off-by: Tom Rini <trini@ti.com>
> ---

If possible, please squash this into "[1/5] Licenses: introduce SPDX
Unique Lincense Identifiers" commit; the cmd_io.c fix (sorry for that,
and thanks for fixing it!) should also be squashed into the commit
that causes the breakage.

If you want, I can provide a new branch / rebase the existing one?

Thanks!!

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
On our campus the UNIX system has proved to be not only an  effective
software tool, but an agent of technical and social change within the
University.                          - John Lions (U. of Toronto (?))

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

* [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file
  2013-07-24 13:36         ` Wolfgang Denk
@ 2013-07-24 15:16           ` Tom Rini
  0 siblings, 0 replies; 15+ messages in thread
From: Tom Rini @ 2013-07-24 15:16 UTC (permalink / raw)
  To: u-boot

On Wed, Jul 24, 2013 at 03:36:54PM +0200, Wolfgang Denk wrote:
> Dear Tom,
> 
> In message <1374671685-21577-1-git-send-email-trini@ti.com> you wrote:
> > 
> > The Licenses/Exceptions file describes the standalone license exception.
> > Add back our long-standing introductory remarks to Licenses/README and
> > fix a few spelling problems
> > 
> > Signed-off-by: Wolfgang Denk <wd@denx.de>
> > [trini: Grab differences between v1 and v3, apply separately, to avoid a
> > new branch on Wolfgang's side]
> > Signed-off-by: Tom Rini <trini@ti.com>
> > ---
> 
> If possible, please squash this into "[1/5] Licenses: introduce SPDX
> Unique Lincense Identifiers" commit; the cmd_io.c fix (sorry for that,
> and thanks for fixing it!) should also be squashed into the commit
> that causes the breakage.

OK, I've got things rebased/squashed/fixuped and a build test in
progress with the other pull requests + SPDX updates for new files going
now.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130724/39df2504/attachment.pgp>

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-10  7:37 [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Wolfgang Denk
                   ` (4 preceding siblings ...)
  2013-07-24 13:17 ` Tom Rini
@ 2013-07-25 13:05 ` Tom Rini
  2013-07-25 13:18   ` Wolfgang Denk
  5 siblings, 1 reply; 15+ messages in thread
From: Tom Rini @ 2013-07-25 13:05 UTC (permalink / raw)
  To: u-boot

On Wed, Jul 10, 2013 at 09:37:36AM +0200, Wolfgang Denk wrote:

> Like many other projects, U-Boot has a tradition of including big
> blocks of License headers in all files.  This not only blows up the
> source code with mostly redundant information, but also makes it very
> difficult to generate License Clearing Reports.  An additional problem
> is that even the same lincenses are referred to by a number of
> slightly varying text blocks (full, abbreviated, different
> indentation, line wrapping and/or white space, with obsolete address
> information, ...) which makes automatic processing a nightmare.
> 
> To make this easier, such license headers in the source files will be
> replaced with a single line reference to Unique Lincense Identifiers
> as defined by the Linux Foundation's SPDX project [1].  For example,
> in a source file the full "GPL v2.0 or later" header text will be
> replaced by a single line:
> 
>         SPDX-License-Identifier:        GPL-2.0+

OK, with the cmd_io.c fix squashed in (and S-o-B added), and v3 of 1/5
used instead, this is now applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130725/a5d91139/attachment.pgp>

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

* [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers
  2013-07-25 13:05 ` Tom Rini
@ 2013-07-25 13:18   ` Wolfgang Denk
  0 siblings, 0 replies; 15+ messages in thread
From: Wolfgang Denk @ 2013-07-25 13:18 UTC (permalink / raw)
  To: u-boot

Dear Tom,

In message <20130725130551.GE19104@bill-the-cat> you wrote:
> 
> OK, with the cmd_io.c fix squashed in (and S-o-B added), and v3 of 1/5
> used instead, this is now applied to u-boot/master, thanks!

Thanks a lot!

[But I can't see it on the server, yet?]

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
A day without sunshine is like night.

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

end of thread, other threads:[~2013-07-25 13:18 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-10  7:37 [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Wolfgang Denk
2013-07-10  7:37 ` [U-Boot] [PATCH 1/5] Licenses: introduce SPDX Unique Lincense Identifiers Wolfgang Denk
2013-07-11 20:35 ` [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Marek Vasut
2013-07-12 19:52   ` Roger Meier
2013-07-23 15:44     ` Wolfgang Denk
2013-07-24  7:20     ` [U-Boot] [PATCH 1/5 v2] Licenses: introduce SPDX Unique Lincense Identifiers Wolfgang Denk
2013-07-24  9:05     ` [U-Boot] [PATCH 1/5 v3] Licenses: introduce SPDX Unique License Identifiers Wolfgang Denk
2013-07-24 13:14       ` [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file Tom Rini
2013-07-24 13:36         ` Wolfgang Denk
2013-07-24 15:16           ` Tom Rini
2013-07-15 21:06 ` [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers Stephen Warren
2013-07-24  9:51 ` Graeme Russ
2013-07-24 13:17 ` Tom Rini
2013-07-25 13:05 ` Tom Rini
2013-07-25 13:18   ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.