public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/17] Cleanup environment related files
@ 2011-11-07 11:13 Igor Grinberg
  2011-11-07 11:13 ` [U-Boot] [PATCH 01/17] env: clean environment.h checkpatch and code style Igor Grinberg
                   ` (18 more replies)
  0 siblings, 19 replies; 40+ messages in thread
From: Igor Grinberg @ 2011-11-07 11:13 UTC (permalink / raw)
  To: u-boot

This patch series cleans up environment related files
in terms of checkpatch and other coding style issues.
It is based on Mon, 7 Nov 2011 Wolfgang's master.

There are several warnings/errors left, mostly because
I don't think we need those solved or I can't choose the
right solution.

Probably, there will be several conflict with the recent patches
on the list, so once all issues are fixed,
I can rebase this patch set on top of the most recent master.

Thanks to all reviewers :-)

Igor Grinberg (17):
  env: clean environment.h checkpatch and code style
  common: move extern char console_buffer[] to common.h
  env: move extern default_environment[] to environment.h
  env: move extern environment[] to environment.h
  env: clean cmd_nvedit.c checkpatch and code style
  env: clean env_nowhere.c checkpatch and code style
  env: clean env_mgdisk.c checkpatch and code style
  env: clean env_dataflash.c checkpatch and code style
  env: clean env_onenand.c checkpatch and code style
  env: clean env_nvram.c checkpatch and code style
  env: clean env_mmc.c checkpatch and code style
  env: clean env_embedded.c checkpatch and code style
  env: clean env_eeprom.c checkpatch and code style
  env: clean env_sf.c checkpatch and code style
  env: clean env_flash.c checkpatch and code style
  env: clean env_nand.c checkpatch and code style
  env: clean env_common.c checkpatch and code style

 board/amcc/yucca/cmd_yucca.c |    1 -
 board/eltec/bab7xx/misc.c    |    1 -
 board/eltec/elppc/misc.c     |    1 -
 board/eltec/mhpc/mhpc.c      |    3 -
 board/hymod/input.c          |    3 -
 board/zeus/zeus.c            |    1 -
 common/cmd_bedbug.c          |    1 -
 common/cmd_dcr.c             |    1 -
 common/cmd_i2c.c             |    1 -
 common/cmd_mem.c             |    1 -
 common/cmd_nvedit.c          |  100 +++++++++++------------
 common/cmd_pci.c             |    1 -
 common/env_common.c          |   52 ++++--------
 common/env_dataflash.c       |   34 +++-----
 common/env_eeprom.c          |  104 +++++++++++-------------
 common/env_embedded.c        |   47 ++++++------
 common/env_flash.c           |  181 ++++++++++++++++++++----------------------
 common/env_mgdisk.c          |    7 +-
 common/env_mmc.c             |   78 ++++++-------------
 common/env_nand.c            |  105 +++++++++++-------------
 common/env_nowhere.c         |   12 +--
 common/env_nvram.c           |   26 +++---
 common/env_onenand.c         |   21 ++----
 common/env_sf.c              |   51 +++++-------
 common/hush.c                |    1 -
 common/modem.c               |    1 -
 include/command.h            |    3 +
 include/common.h             |    1 +
 include/dataflash.h          |    2 +
 include/environment.h        |   61 +++++++++-----
 tools/envcrc.c               |    4 +-
 31 files changed, 395 insertions(+), 511 deletions(-)

-- 
1.7.3.4

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

end of thread, other threads:[~2011-12-06 21:11 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-07 11:13 [U-Boot] [PATCH 00/17] Cleanup environment related files Igor Grinberg
2011-11-07 11:13 ` [U-Boot] [PATCH 01/17] env: clean environment.h checkpatch and code style Igor Grinberg
2011-11-07 11:13 ` [U-Boot] [PATCH 02/17] common: move extern char console_buffer[] to common.h Igor Grinberg
2011-11-07 11:13 ` [U-Boot] [PATCH 03/17] env: move extern default_environment[] to environment.h Igor Grinberg
2011-11-07 11:17   ` Stefan Roese
2011-11-17 14:12   ` Stefano Babic
2011-11-17 15:14     ` Igor Grinberg
2011-11-17 15:30       ` Stefano Babic
2011-11-17 16:07         ` [U-Boot] [PATCH v2 04/17] env: move extern environment[] " Igor Grinberg
2011-11-25 21:12           ` Mike Frysinger
2011-11-27  8:31             ` Igor Grinberg
2011-11-28  7:57             ` [U-Boot] [PATCH] tools/envcrc: fix compile breakage Igor Grinberg
2011-11-28  8:07               ` Wolfgang Denk
2011-11-28  9:04                 ` Igor Grinberg
2011-11-28 15:15                   ` Wolfgang Denk
2011-11-29  6:38                     ` Igor Grinberg
2011-11-28 18:52                   ` Mike Frysinger
2011-11-29  6:35                     ` Igor Grinberg
2011-11-28  8:18               ` Wolfgang Denk
2011-11-28  8:53                 ` Igor Grinberg
2011-11-29  4:25               ` Mike Frysinger
2011-11-29  6:41                 ` Igor Grinberg
2011-12-05 10:48               ` Igor Grinberg
2011-12-06 21:11               ` Wolfgang Denk
2011-11-07 11:13 ` [U-Boot] [PATCH 04/17] env: move extern environment[] to environment.h Igor Grinberg
2011-11-07 11:13 ` [U-Boot] [PATCH 05/17] env: clean cmd_nvedit.c checkpatch and code style Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 06/17] env: clean env_nowhere.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 07/17] env: clean env_mgdisk.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 08/17] env: clean env_dataflash.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 09/17] env: clean env_onenand.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 10/17] env: clean env_nvram.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 11/17] env: clean env_mmc.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 12/17] env: clean env_embedded.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 13/17] env: clean env_eeprom.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 14/17] env: clean env_sf.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 15/17] env: clean env_flash.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 16/17] env: clean env_nand.c " Igor Grinberg
2011-11-07 11:14 ` [U-Boot] [PATCH 17/17] env: clean env_common.c " Igor Grinberg
2011-11-13  8:29 ` [U-Boot] [PATCH 00/17] Cleanup environment related files Igor Grinberg
2011-11-22  8:52 ` Stefano Babic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox