Re: [PATCH 1/5] PCI/PTM: Remove spurious "d" from granularity message

From: Andrew Murray
Date: Thu Nov 07 2019 - 04:28:52 EST


On Wed, Nov 06, 2019 at 04:24:17PM -0600, Bjorn Helgaas wrote:
> From: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>
>
> The granularity message has an extra "d":
>
> pci 0000:02:00.0: PTM enabled, 4dns granularity
>
> Remove the "d" so the message is simply "PTM enabled, 4ns granularity".
>
> Fixes: 8b2ec318eece ("PCI: Add PTM clock granularity information")
> Signed-off-by: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>
> Cc: Jonathan Yong <jonathan.yong@xxxxxxxxx
> ---
> drivers/pci/pcie/ptm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pci/pcie/ptm.c b/drivers/pci/pcie/ptm.c
> index 98cfa30f3fae..9361f3aa26ab 100644
> --- a/drivers/pci/pcie/ptm.c
> +++ b/drivers/pci/pcie/ptm.c
> @@ -21,7 +21,7 @@ static void pci_ptm_info(struct pci_dev *dev)
> snprintf(clock_desc, sizeof(clock_desc), ">254ns");
> break;
> default:
> - snprintf(clock_desc, sizeof(clock_desc), "%udns",
> + snprintf(clock_desc, sizeof(clock_desc), "%uns",
> dev->ptm_granularity);
> break;
> }

Reviewed-by: Andrew Murray <andrew.murray@xxxxxxx>

> --
> 2.24.0.rc1.363.gb1bccd3e3d-goog
>