All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH 1/3] net: eth-phy: define LOG_CATEGORY
@ 2021-07-20 18:15 Patrick Delaunay
  2021-07-20 18:15 ` [RESEND PATCH 2/3] net: dwc_eth_qos: " Patrick Delaunay
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Patrick Delaunay @ 2021-07-20 18:15 UTC (permalink / raw)
  To: u-boot; +Cc: Patrick Delaunay, Ramon Fried, Joe Hershberger, U-Boot STM32

Define LOG_CATEGORY to allow filtering with log command.

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
---

 drivers/net/eth-phy-uclass.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/eth-phy-uclass.c b/drivers/net/eth-phy-uclass.c
index 07aebd935e..abb658bf21 100644
--- a/drivers/net/eth-phy-uclass.c
+++ b/drivers/net/eth-phy-uclass.c
@@ -3,6 +3,8 @@
  * Copyright 2020 NXP
  */
 
+#define LOG_CATEGORY UCLASS_ETH_PHY
+
 #include <common.h>
 #include <dm.h>
 #include <net.h>
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [RESEND PATCH 2/3] net: dwc_eth_qos: define LOG_CATEGORY
  2021-07-20 18:15 [RESEND PATCH 1/3] net: eth-phy: define LOG_CATEGORY Patrick Delaunay
@ 2021-07-20 18:15 ` Patrick Delaunay
  2021-07-22 19:10   ` Ramon Fried
  2021-07-20 18:15 ` [RESEND PATCH 3/3] net: " Patrick Delaunay
  2021-07-22 19:10 ` [RESEND PATCH 1/3] net: eth-phy: " Ramon Fried
  2 siblings, 1 reply; 6+ messages in thread
From: Patrick Delaunay @ 2021-07-20 18:15 UTC (permalink / raw)
  To: u-boot; +Cc: Patrick Delaunay, Ramon Fried, Joe Hershberger, U-Boot STM32

Define LOG_CATEGORY to allow filtering with log command.

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
---

 drivers/net/dwc_eth_qos.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/dwc_eth_qos.c b/drivers/net/dwc_eth_qos.c
index f048e9d585..3358dc3514 100644
--- a/drivers/net/dwc_eth_qos.c
+++ b/drivers/net/dwc_eth_qos.c
@@ -27,6 +27,8 @@
  *    all clock and reset signals to the HW block.
  */
 
+#define LOG_CATEGORY UCLASS_ETH
+
 #include <common.h>
 #include <clk.h>
 #include <cpu_func.h>
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [RESEND PATCH 3/3] net: define LOG_CATEGORY
  2021-07-20 18:15 [RESEND PATCH 1/3] net: eth-phy: define LOG_CATEGORY Patrick Delaunay
  2021-07-20 18:15 ` [RESEND PATCH 2/3] net: dwc_eth_qos: " Patrick Delaunay
@ 2021-07-20 18:15 ` Patrick Delaunay
  2021-07-22 19:10   ` Ramon Fried
  2021-07-22 19:10 ` [RESEND PATCH 1/3] net: eth-phy: " Ramon Fried
  2 siblings, 1 reply; 6+ messages in thread
From: Patrick Delaunay @ 2021-07-20 18:15 UTC (permalink / raw)
  To: u-boot; +Cc: Patrick Delaunay, Ramon Fried, Joe Hershberger, U-Boot STM32

Define LOG_CATEGORY to allow filtering with log command.

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
---

 net/eth-uclass.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net/eth-uclass.c b/net/eth-uclass.c
index 5146bd6666..c2a97d723a 100644
--- a/net/eth-uclass.c
+++ b/net/eth-uclass.c
@@ -5,6 +5,8 @@
  * Joe Hershberger, National Instruments
  */
 
+#define LOG_CATEGORY UCLASS_ETH
+
 #include <common.h>
 #include <bootstage.h>
 #include <dm.h>
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [RESEND PATCH 1/3] net: eth-phy: define LOG_CATEGORY
  2021-07-20 18:15 [RESEND PATCH 1/3] net: eth-phy: define LOG_CATEGORY Patrick Delaunay
  2021-07-20 18:15 ` [RESEND PATCH 2/3] net: dwc_eth_qos: " Patrick Delaunay
  2021-07-20 18:15 ` [RESEND PATCH 3/3] net: " Patrick Delaunay
@ 2021-07-22 19:10 ` Ramon Fried
  2 siblings, 0 replies; 6+ messages in thread
From: Ramon Fried @ 2021-07-22 19:10 UTC (permalink / raw)
  To: Patrick Delaunay; +Cc: U-Boot Mailing List, Joe Hershberger, U-Boot STM32

On Tue, Jul 20, 2021 at 9:15 PM Patrick Delaunay
<patrick.delaunay@foss.st.com> wrote:
>
> Define LOG_CATEGORY to allow filtering with log command.
>
> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
> ---
>
>  drivers/net/eth-phy-uclass.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/net/eth-phy-uclass.c b/drivers/net/eth-phy-uclass.c
> index 07aebd935e..abb658bf21 100644
> --- a/drivers/net/eth-phy-uclass.c
> +++ b/drivers/net/eth-phy-uclass.c
> @@ -3,6 +3,8 @@
>   * Copyright 2020 NXP
>   */
>
> +#define LOG_CATEGORY UCLASS_ETH_PHY
> +
>  #include <common.h>
>  #include <dm.h>
>  #include <net.h>
> --
> 2.25.1
>

Applied to u-boot-net/network-master
Thanks,
Ramon.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [RESEND PATCH 2/3] net: dwc_eth_qos: define LOG_CATEGORY
  2021-07-20 18:15 ` [RESEND PATCH 2/3] net: dwc_eth_qos: " Patrick Delaunay
@ 2021-07-22 19:10   ` Ramon Fried
  0 siblings, 0 replies; 6+ messages in thread
From: Ramon Fried @ 2021-07-22 19:10 UTC (permalink / raw)
  To: Patrick Delaunay; +Cc: U-Boot Mailing List, Joe Hershberger, U-Boot STM32

On Tue, Jul 20, 2021 at 9:15 PM Patrick Delaunay
<patrick.delaunay@foss.st.com> wrote:
>
> Define LOG_CATEGORY to allow filtering with log command.
>
> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
> ---
>
>  drivers/net/dwc_eth_qos.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/net/dwc_eth_qos.c b/drivers/net/dwc_eth_qos.c
> index f048e9d585..3358dc3514 100644
> --- a/drivers/net/dwc_eth_qos.c
> +++ b/drivers/net/dwc_eth_qos.c
> @@ -27,6 +27,8 @@
>   *    all clock and reset signals to the HW block.
>   */
>
> +#define LOG_CATEGORY UCLASS_ETH
> +
>  #include <common.h>
>  #include <clk.h>
>  #include <cpu_func.h>
> --
> 2.25.1
>

Applied to u-boot-net/network-master
Thanks,
Ramon.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [RESEND PATCH 3/3] net: define LOG_CATEGORY
  2021-07-20 18:15 ` [RESEND PATCH 3/3] net: " Patrick Delaunay
@ 2021-07-22 19:10   ` Ramon Fried
  0 siblings, 0 replies; 6+ messages in thread
From: Ramon Fried @ 2021-07-22 19:10 UTC (permalink / raw)
  To: Patrick Delaunay; +Cc: U-Boot Mailing List, Joe Hershberger, U-Boot STM32

On Tue, Jul 20, 2021 at 9:15 PM Patrick Delaunay
<patrick.delaunay@foss.st.com> wrote:
>
> Define LOG_CATEGORY to allow filtering with log command.
>
> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
> ---
>
>  net/eth-uclass.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/net/eth-uclass.c b/net/eth-uclass.c
> index 5146bd6666..c2a97d723a 100644
> --- a/net/eth-uclass.c
> +++ b/net/eth-uclass.c
> @@ -5,6 +5,8 @@
>   * Joe Hershberger, National Instruments
>   */
>
> +#define LOG_CATEGORY UCLASS_ETH
> +
>  #include <common.h>
>  #include <bootstage.h>
>  #include <dm.h>
> --
> 2.25.1
>

Applied to u-boot-net/network-master
Thanks,
Ramon.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-07-22 19:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-20 18:15 [RESEND PATCH 1/3] net: eth-phy: define LOG_CATEGORY Patrick Delaunay
2021-07-20 18:15 ` [RESEND PATCH 2/3] net: dwc_eth_qos: " Patrick Delaunay
2021-07-22 19:10   ` Ramon Fried
2021-07-20 18:15 ` [RESEND PATCH 3/3] net: " Patrick Delaunay
2021-07-22 19:10   ` Ramon Fried
2021-07-22 19:10 ` [RESEND PATCH 1/3] net: eth-phy: " Ramon Fried

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.