zephyr/drivers/ethernet
Gerard Marull-Paretas 79e6b0e0f6 includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h>
As of today <zephyr/zephyr.h> is 100% equivalent to <zephyr/kernel.h>.
This patch proposes to then include <zephyr/kernel.h> instead of
<zephyr/zephyr.h> since it is more clear that you are including the
Kernel APIs and (probably) nothing else. <zephyr/zephyr.h> sounds like a
catch-all header that may be confusing. Most applications need to
include a bunch of other things to compile, e.g. driver headers or
subsystem headers like BT, logging, etc.

The idea of a catch-all header in Zephyr is probably not feasible
anyway. Reason is that Zephyr is not a library, like it could be for
example `libpython`. Zephyr provides many utilities nowadays: a kernel,
drivers, subsystems, etc and things will likely grow. A catch-all header
would be massive, difficult to keep up-to-date. It is also likely that
an application will only build a small subset. Note that subsystem-level
headers may use a catch-all approach to make things easier, though.

NOTE: This patch is **NOT** removing the header, just removing its usage
in-tree. I'd advocate for its deprecation (add a #warning on it), but I
understand many people will have concerns.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-09-05 16:31:47 +02:00
..
phy drivers: add mising braces to single line if statements 2022-07-06 11:00:45 -04:00
CMakeLists.txt drivers: ethernet: remove duplicate CMake entry 2022-08-15 14:32:45 +02:00
dsa_ksz8xxx.c drivers: ethernet: dsa_ksz8xxx: use NET_DEVICE_DT_DEFINE_INSTANCE 2022-06-15 17:05:33 -05:00
dsa_ksz8794.h net: dsa: ksz8794: Fix the port numbering for this ETH switch IC 2021-12-01 13:58:08 -06:00
dsa_ksz8863.h dts: ksz8974: add support for ksz8863 2021-07-26 19:37:22 -04:00
eth.h drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_dwmac.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_dwmac_mmu.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_dwmac_priv.h ethernet: Synopsys DesignWare MAC driver 2021-10-27 10:43:05 -04:00
eth_dwmac_stm32h7x.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_e1000.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_e1000_priv.h drivers: Fix coding guidelines MISRAC:2012 Rule 14.4 do-whiles/Zero checks 2022-07-26 15:30:24 -04:00
eth_enc28j60.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_enc28j60_priv.h drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_enc424j600.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_enc424j600_priv.h drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_gecko.c drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_gecko_priv.h drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_liteeth.c drivers: use unsigned int for irq_lock() 2022-07-14 14:37:13 -05:00
eth_mcux.c devices: constify device pointers initialized at compile time 2022-08-22 17:08:26 +02:00
eth_native_posix.c devices: constify device pointers initialized at compile time 2022-08-22 17:08:26 +02:00
eth_native_posix_adapt.c drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_native_posix_priv.h drivers: eth: native_posix: Allow non-root access 2018-10-23 11:08:39 +03:00
eth_sam0_gmac.h drivers: ethernet: eth_sam_gmac: Add SAM0 family support 2020-04-17 04:56:28 -05:00
eth_sam_gmac.c devices: constify device pointers initialized at compile time 2022-08-22 17:08:26 +02:00
eth_sam_gmac_priv.h drivers: eth: Update sam/sam0 eth drivers to use pinctrl 2022-03-24 15:45:37 -07:00
eth_smsc911x.c drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_smsc911x_priv.h drivers: eth_smsc911x_priv: Remove obsolete macros 2022-03-16 10:22:55 +01:00
eth_stellaris.c drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
eth_stellaris_priv.h drivers: ethernet: drop DEV_DATA/DEV_CFG usage 2022-01-19 18:16:02 +01:00
eth_stm32_hal.c drivers: ethernet: stm32_hal: Rename flag. 2022-09-02 10:37:49 +00:00
eth_stm32_hal_priv.h drivers: ethernet: patch for the stm32 drivers 2022-08-23 20:08:35 +02:00
eth_w5500.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_w5500_priv.h drivers: ethernet: w5500: keep thread blocking in command read-back 2022-06-07 18:56:31 +02:00
eth_xlnx_gem.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
eth_xlnx_gem_priv.h drivers: ethernet: xlnx: gem: do not lock/unlock the SLCRs 2022-06-28 20:46:11 +02:00
Kconfig drivers: ethernet: provide Kconfig means to disable ethernet drivers 2022-08-12 11:33:43 +02:00
Kconfig.dsa drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.dwmac drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.e1000 drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.enc28j60 drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.enc424j600 drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.gecko drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.liteeth drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.mcux drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.native_posix net: native_posix: gptp: Add multiport support 2020-08-19 12:47:09 -04:00
Kconfig.sam_gmac drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.smsc911x drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.stellaris drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.stm32_hal drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.w5500 drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
Kconfig.xlnx_gem drivers: ethernet: Update Kconfig 2022-08-15 14:32:45 +02:00
phy_gecko.c drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00
phy_gecko.h zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
phy_xlnx_gem.c includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
phy_xlnx_gem.h drivers: migrate includes to <zephyr/...> 2022-05-06 19:58:21 +02:00