2021-01-15 20:42:34

by Stephen Boyd

[permalink] [raw]
Subject: [PATCH] soc: qcom: socinfo: Don't print anything if nothing found

Let's skip printing anything if there's nothing to see. This makes it so
the file length is 0 instead of 1, for the newline, and helps scripts
figure out if there's anything to see in these files.

Cc: Sai Prakash Ranjan <[email protected]>
Cc: Douglas Anderson <[email protected]>
Cc: Dmitry Baryshkov <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
---
drivers/soc/qcom/socinfo.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index a985ed064669..0844b5d4e354 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -373,8 +373,8 @@ QCOM_OPEN(chip_id, qcom_show_chip_id);
static int show_image_##type(struct seq_file *seq, void *p) \
{ \
struct smem_image_version *image_version = seq->private; \
- seq_puts(seq, image_version->type); \
- seq_putc(seq, '\n'); \
+ if (image_version->type[0] != '\0') \
+ seq_printf(seq, "%s\n", image_version->type); \
return 0; \
} \
static int open_image_##type(struct inode *inode, struct file *file) \

base-commit: 3bc4bf77fa2adca8d6677461b6ec57505f1a3331
--
https://chromeos.dev


2021-01-16 01:00:28

by Doug Anderson

[permalink] [raw]
Subject: Re: [PATCH] soc: qcom: socinfo: Don't print anything if nothing found

Hi,

On Fri, Jan 15, 2021 at 12:39 PM Stephen Boyd <[email protected]> wrote:
>
> Let's skip printing anything if there's nothing to see. This makes it so
> the file length is 0 instead of 1, for the newline, and helps scripts
> figure out if there's anything to see in these files.
>
> Cc: Sai Prakash Ranjan <[email protected]>
> Cc: Douglas Anderson <[email protected]>
> Cc: Dmitry Baryshkov <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>
> ---
> drivers/soc/qcom/socinfo.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Douglas Anderson <[email protected]>

2021-01-19 06:02:28

by Sai Prakash Ranjan

[permalink] [raw]
Subject: Re: [PATCH] soc: qcom: socinfo: Don't print anything if nothing found

On 2021-01-16 02:09, Stephen Boyd wrote:
> Let's skip printing anything if there's nothing to see. This makes it
> so
> the file length is 0 instead of 1, for the newline, and helps scripts
> figure out if there's anything to see in these files.
>
> Cc: Sai Prakash Ranjan <[email protected]>
> Cc: Douglas Anderson <[email protected]>
> Cc: Dmitry Baryshkov <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>
> ---

Reviewed-by: Sai Prakash Ranjan <[email protected]>

> drivers/soc/qcom/socinfo.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
> index a985ed064669..0844b5d4e354 100644
> --- a/drivers/soc/qcom/socinfo.c
> +++ b/drivers/soc/qcom/socinfo.c
> @@ -373,8 +373,8 @@ QCOM_OPEN(chip_id, qcom_show_chip_id);
> static int show_image_##type(struct seq_file *seq, void *p) \
> { \
> struct smem_image_version *image_version = seq->private; \
> - seq_puts(seq, image_version->type); \
> - seq_putc(seq, '\n'); \
> + if (image_version->type[0] != '\0') \
> + seq_printf(seq, "%s\n", image_version->type); \
> return 0; \
> } \
> static int open_image_##type(struct inode *inode, struct file *file)
> \
>
> base-commit: 3bc4bf77fa2adca8d6677461b6ec57505f1a3331

--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a
member
of Code Aurora Forum, hosted by The Linux Foundation