Re: [PATCH 04/11] net: dwc_eth_qos: Scrub ifdeffery

2024-04-05 Thread Christophe ROULLIER
On 3/9/24 03:11, Marek Vasut wrote: Replace ifdef CONFIG_CLK with if (CONFIG_IS_ENABLED(CLK)) to improve code build coverage. Some of the functions printed debug("%s: OK\n", __func__); on exit with and without CLK enabled, some did not, make it consistent and print nothing if CLK is disabled.

Re: [PATCH 04/11] net: dwc_eth_qos: Scrub ifdeffery

2024-03-12 Thread Patrice CHOTARD
On 3/9/24 03:11, Marek Vasut wrote: > Replace ifdef CONFIG_CLK with if (CONFIG_IS_ENABLED(CLK)) to improve code > build coverage. Some of the functions printed debug("%s: OK\n", __func__); > on exit with and without CLK enabled, some did not, make it consistent and > print nothing if CLK is

[PATCH 04/11] net: dwc_eth_qos: Scrub ifdeffery

2024-03-08 Thread Marek Vasut
Replace ifdef CONFIG_CLK with if (CONFIG_IS_ENABLED(CLK)) to improve code build coverage. Some of the functions printed debug("%s: OK\n", __func__); on exit with and without CLK enabled, some did not, make it consistent and print nothing if CLK is disabled. Signed-off-by: Marek Vasut --- Cc: