u-boot-brain/board/broadcom
Masahiro Yamada b75d8dc564 treewide: convert bd_t to struct bd_info by coccinelle
The Linux coding style guide (Documentation/process/coding-style.rst)
clearly says:

  It's a **mistake** to use typedef for structures and pointers.

Besides, using typedef for structures is annoying when you try to make
headers self-contained.

Let's say you have the following function declaration in a header:

  void foo(bd_t *bd);

This is not self-contained since bd_t is not defined.

To tell the compiler what 'bd_t' is, you need to include <asm/u-boot.h>

  #include <asm/u-boot.h>
  void foo(bd_t *bd);

Then, the include direcective pulls in more bloat needlessly.

If you use 'struct bd_info' instead, it is enough to put a forward
declaration as follows:

  struct bd_info;
  void foo(struct bd_info *bd);

Right, typedef'ing bd_t is a mistake.

I used coccinelle to generate this commit.

The semantic patch that makes this change is as follows:

  <smpl>
  @@
  typedef bd_t;
  @@
  -bd_t
  +struct bd_info
  </smpl>

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-07-17 09:30:13 -04:00
..
bcm_ep treewide: convert bd_t to struct bd_info by coccinelle 2020-07-17 09:30:13 -04:00
bcm11130 maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm11130_nand maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm23550_w1d treewide: convert bd_t to struct bd_info by coccinelle 2020-07-17 09:30:13 -04:00
bcm28155_ap treewide: convert bd_t to struct bd_info by coccinelle 2020-07-17 09:30:13 -04:00
bcm28155_w1d maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm911360_entphn maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm911360_entphn-ns maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm911360k maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm958300k maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm958300k-ns maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm958305k maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm958622hr maintainers: new email address 2016-06-27 21:12:05 -04:00
bcm958712k board: ns2: Add support for Broadcom Northstar 2 2017-03-20 18:04:43 -04:00
bcm963158 common: Drop init.h from common header 2020-05-18 17:33:33 -04:00
bcm968360bg common: Drop init.h from common header 2020-05-18 17:33:33 -04:00
bcm968380gerg bcm968380gerg: Add MAINTAINERS file 2018-08-09 11:48:39 -04:00
bcm968580xref common: Drop init.h from common header 2020-05-18 17:33:33 -04:00
bcmcygnus ARM: bcm: Enable five Cygnus boards 2014-11-23 06:49:00 -05:00
bcmns2 common: Drop net.h from common header 2020-05-18 17:33:31 -04:00
bcmnsp ARM: bcm: Enable five Cygnus boards 2014-11-23 06:49:00 -05:00
bcmstb common: Drop log.h from common header 2020-05-18 21:19:18 -04:00