Re: [PATCH] PCI: acpiphp: Fixed coding style

From: Krzysztof Wilczyński
Date: Sat Mar 06 2021 - 20:22:38 EST


Hi,

Thank you for sending the patch over. Few suggestions below.

There seem to be an extra space in the subject line.

> In this commit fixed coding style for braces and comments.

Where these coding style changes suggested by a tool? For example, was it
something like checkpatch.pl? If so, then it would be prudent to
mention that the script found these for future reference.

[...]
> - struct list_head funcs; /* one slot may have different
> - objects (i.e. for each function) */
> + struct list_head funcs; /* one slot may have different */
> + /* objects (i.e. for each function) */
[...]

Above would be a single line commit that has been made to with within
the line length rules, as otherwise the line would be too long.

This is not necessarily something that we ought to fix, see for example:
https://elixir.bootlin.com/linux/v5.11.3/source/include/linux/pci.h

[...]
> -struct acpiphp_attention_info
> -{
> +struct acpiphp_attention_info {
> int (*set_attn)(struct hotplug_slot *slot, u8 status);
> int (*get_attn)(struct hotplug_slot *slot, u8 *status);
> struct module *owner;
[...]

Nice catch!

Generally, you would also need to your full name when providing your
"Signed-off-by:" following the style that has been widely accepted. See
git log for how it would normally look like, and also have a look at the
following for some general guidance on how to submit patches:

https://www.kernel.org/doc/html/latest/process/submitting-patches.html

Krzysztof