aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-05-13 09:15:51 -0600
committerTom Rini <trini@konsulko.com>2024-05-13 09:15:51 -0600
commitc8ffd1356d42223cbb8c86280a083cc3c93e6426 (patch)
tree35be4e1f46e5b386c124483872c58611cd97fe6c /doc
parent2ee6f3a5f7550de3599faef9704e166e5dcace35 (diff)
parent577373239a35afa865098741cf805f6176de8b16 (diff)
downloadu-boot-c8ffd1356d42223cbb8c86280a083cc3c93e6426.zip
u-boot-c8ffd1356d42223cbb8c86280a083cc3c93e6426.tar.gz
u-boot-c8ffd1356d42223cbb8c86280a083cc3c93e6426.tar.bz2
Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"WIP/13May2024
Roger Quadros <rogerq@kernel.org> says: Sync AM62 device tree files with Linux v6.9 and add in the missing bits in -u-boot.dtsi to get CPSW Ethernet working. CI testing: https://github.com/u-boot/u-boot/pull/534
Diffstat (limited to 'doc')
-rw-r--r--doc/develop/codingstyle.rst8
-rw-r--r--doc/develop/tests_writing.rst1
2 files changed, 2 insertions, 7 deletions
diff --git a/doc/develop/codingstyle.rst b/doc/develop/codingstyle.rst
index f6248cd..fa3cd6a 100644
--- a/doc/develop/codingstyle.rst
+++ b/doc/develop/codingstyle.rst
@@ -110,9 +110,8 @@ Include files
You should follow this ordering in U-Boot. In all cases, they should be listed
in alphabetical order. First comes headers which are located directly in our
-top-level include diretory. This excludes the common.h header file which is to
-be removed. Second are headers within subdirectories, Finally directory-local
-includes should be listed. See this example:
+top-level include diretory. Second are headers within subdirectories, Finally
+directory-local includes should be listed. See this example:
.. code-block:: C
@@ -129,9 +128,6 @@ For files that need to be compiled for the host (e.g. tools), you need to use
``#ifndef USE_HOSTCC`` to avoid including U-Boot specific include files. See
common/image.c for an example.
-If you encounter code which still uses <common.h> a patch to remove that and
-replace it with any required include files directly is much appreciated.
-
If your file uses driver model, include <dm.h> in the C file. Do not include
dm.h in a header file. Try to use forward declarations (e.g. ``struct
udevice``) instead.
diff --git a/doc/develop/tests_writing.rst b/doc/develop/tests_writing.rst
index bb1145d..44b544f 100644
--- a/doc/develop/tests_writing.rst
+++ b/doc/develop/tests_writing.rst
@@ -281,7 +281,6 @@ new one of those, you should add a new suite.
Create a new file in test/ or a subdirectory and define a macro to register the
suite. For example::
- #include <common.h>
#include <console.h>
#include <mapmem.h>
#include <dm/test.h>