From: Greg KH <gregkh@linuxfoundation.org>
To: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Cc: vkoul@kernel.org, linux-phy@lists.infradead.org, kishon@ti.com,
linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev,
neil@brown.name, ilya.lipnitskiy@gmail.com,
kernel test robot <lkp@intel.com>
Subject: Re: [PATCH] phy: ralink: phy-mt7621-pci: properly print pointer address
Date: Fri, 7 May 2021 08:27:45 +0200 [thread overview]
Message-ID: <YJTd4cl6ZsPieC1b@kroah.com> (raw)
In-Reply-To: <20210507060142.17049-1-sergio.paracuellos@gmail.com>
On Fri, May 07, 2021 at 08:01:42AM +0200, Sergio Paracuellos wrote:
> The way of printing the pointer address for the 'port_base'
> address got into compile warnings on some architectures
> [-Wpointer-to-int-cast]. Instead of use '%08x' and cast
> to an 'unsigned int' just make use of '%px' and avoid the
> cast.
>
> Fixes: d87da32372a0 ("phy: ralink: Add PHY driver for MT7621 PCIe PHY")
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
> ---
> drivers/phy/ralink/phy-mt7621-pci.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/phy/ralink/phy-mt7621-pci.c b/drivers/phy/ralink/phy-mt7621-pci.c
> index 753cb5bab930..4705931fb072 100644
> --- a/drivers/phy/ralink/phy-mt7621-pci.c
> +++ b/drivers/phy/ralink/phy-mt7621-pci.c
> @@ -272,8 +272,8 @@ static struct phy *mt7621_pcie_phy_of_xlate(struct device *dev,
>
> mt7621_phy->has_dual_port = args->args[0];
>
> - dev_info(dev, "PHY for 0x%08x (dual port = %d)\n",
> - (unsigned int)mt7621_phy->port_base, mt7621_phy->has_dual_port);
> + dev_info(dev, "PHY for 0x%px (dual port = %d)\n",
> + mt7621_phy->port_base, mt7621_phy->has_dual_port);
This whole message should be dropped as drivers should be quiet if all
is going well, and only print messages when things go wrong.
And why cc: linux-staging?
thanks,
greg k-h
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <gregkh@linuxfoundation.org>
To: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Cc: vkoul@kernel.org, linux-phy@lists.infradead.org, kishon@ti.com,
linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev,
neil@brown.name, ilya.lipnitskiy@gmail.com,
kernel test robot <lkp@intel.com>
Subject: Re: [PATCH] phy: ralink: phy-mt7621-pci: properly print pointer address
Date: Fri, 7 May 2021 08:27:45 +0200 [thread overview]
Message-ID: <YJTd4cl6ZsPieC1b@kroah.com> (raw)
In-Reply-To: <20210507060142.17049-1-sergio.paracuellos@gmail.com>
On Fri, May 07, 2021 at 08:01:42AM +0200, Sergio Paracuellos wrote:
> The way of printing the pointer address for the 'port_base'
> address got into compile warnings on some architectures
> [-Wpointer-to-int-cast]. Instead of use '%08x' and cast
> to an 'unsigned int' just make use of '%px' and avoid the
> cast.
>
> Fixes: d87da32372a0 ("phy: ralink: Add PHY driver for MT7621 PCIe PHY")
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
> ---
> drivers/phy/ralink/phy-mt7621-pci.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/phy/ralink/phy-mt7621-pci.c b/drivers/phy/ralink/phy-mt7621-pci.c
> index 753cb5bab930..4705931fb072 100644
> --- a/drivers/phy/ralink/phy-mt7621-pci.c
> +++ b/drivers/phy/ralink/phy-mt7621-pci.c
> @@ -272,8 +272,8 @@ static struct phy *mt7621_pcie_phy_of_xlate(struct device *dev,
>
> mt7621_phy->has_dual_port = args->args[0];
>
> - dev_info(dev, "PHY for 0x%08x (dual port = %d)\n",
> - (unsigned int)mt7621_phy->port_base, mt7621_phy->has_dual_port);
> + dev_info(dev, "PHY for 0x%px (dual port = %d)\n",
> + mt7621_phy->port_base, mt7621_phy->has_dual_port);
This whole message should be dropped as drivers should be quiet if all
is going well, and only print messages when things go wrong.
And why cc: linux-staging?
thanks,
greg k-h
next prev parent reply other threads:[~2021-05-07 6:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-07 6:01 [PATCH] phy: ralink: phy-mt7621-pci: properly print pointer address Sergio Paracuellos
2021-05-07 6:01 ` Sergio Paracuellos
2021-05-07 6:27 ` Greg KH [this message]
2021-05-07 6:27 ` Greg KH
2021-05-07 6:41 ` Sergio Paracuellos
2021-05-07 6:41 ` Sergio Paracuellos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YJTd4cl6ZsPieC1b@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=ilya.lipnitskiy@gmail.com \
--cc=kishon@ti.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-staging@lists.linux.dev \
--cc=lkp@intel.com \
--cc=neil@brown.name \
--cc=sergio.paracuellos@gmail.com \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.