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

2024-04-19 Thread Patrice CHOTARD
rger ; >> Patrick DELAUNAY - foss ; Ramon Fried >> ; u-b...@dh-electronics.com; >> uboot-st...@st-md-mailman.stormreply.com >> Subject: [PATCH v2 04/11] net: dwc_eth_qos: Scrub ifdeffery >> >> Replace ifdef CONFIG_CLK with if (CONFIG_IS_ENABLED(CLK)) to

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

2024-04-08 Thread Christophe ROULLIER
-mailman.stormreply.com Subject: [PATCH v2 04/11] net: dwc_eth_qos: Scrub ifdeffery 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

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

2024-03-26 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. Reviewed-by: Patrice Chotard