diff mbox series

PCI: endpoint: Replace magic number "6" by PCI_STD_NUM_BARS

Message ID 20241212162547.225880-1-rick.wertenbroek@gmail.com (mailing list archive)
State Accepted
Commit 76850b54943ffd5037c97cc27794449ce05c31e9
Headers show
Series PCI: endpoint: Replace magic number "6" by PCI_STD_NUM_BARS | expand

Commit Message

Rick Wertenbroek Dec. 12, 2024, 4:25 p.m. UTC
Replace the constant "6" by PCI_STD_NUM_BARS, as defined in
include/uapi/linux/pci_regs.h:

Signed-off-by: Rick Wertenbroek <rick.wertenbroek@gmail.com>
---
 include/linux/pci-epf.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Rick Wertenbroek Dec. 12, 2024, 4:29 p.m. UTC | #1
On Thu, Dec 12, 2024 at 5:25 PM Rick Wertenbroek
<rick.wertenbroek@gmail.com> wrote:
>
> Replace the constant "6" by PCI_STD_NUM_BARS, as defined in
> include/uapi/linux/pci_regs.h:
>
> Signed-off-by: Rick Wertenbroek <rick.wertenbroek@gmail.com>
> ---
>  include/linux/pci-epf.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/pci-epf.h b/include/linux/pci-epf.h
> index 18a3aeb62ae4..ee6156bcbbd0 100644
> --- a/include/linux/pci-epf.h
> +++ b/include/linux/pci-epf.h
> @@ -157,7 +157,7 @@ struct pci_epf {
>         struct device           dev;
>         const char              *name;
>         struct pci_epf_header   *header;
> -       struct pci_epf_bar      bar[6];
> +       struct pci_epf_bar      bar[PCI_STD_NUM_BARS];
>         u8                      msi_interrupts;
>         u16                     msix_interrupts;
>         u8                      func_no;
> @@ -174,7 +174,7 @@ struct pci_epf {
>         /* Below members are to attach secondary EPC to an endpoint function */
>         struct pci_epc          *sec_epc;
>         struct list_head        sec_epc_list;
> -       struct pci_epf_bar      sec_epc_bar[6];
> +       struct pci_epf_bar      sec_epc_bar[PCI_STD_NUM_BARS];
>         u8                      sec_epc_func_no;
>         struct config_group     *group;
>         unsigned int            is_bound;
> --
> 2.25.1
>

The commit message was supposed to state :

---

PCI: endpoint: Replace magic number "6" by PCI_STD_NUM_BARS

Replace the constant "6" by PCI_STD_NUM_BARS, as defined in
include/uapi/linux/pci_regs.h:
#define PCI_STD_NUM_BARS       6       /* Number of standard BARs */

Signed-off-by: Rick Wertenbroek <rick.wertenbroek@gmail.com>

---

But the line starting with # got eaten away as a comment.
Sorry about that.
Best regards,
Rick
Bjorn Helgaas Dec. 12, 2024, 7 p.m. UTC | #2
On Thu, Dec 12, 2024 at 05:25:47PM +0100, Rick Wertenbroek wrote:
> Replace the constant "6" by PCI_STD_NUM_BARS, as defined in
> include/uapi/linux/pci_regs.h:
> 
> Signed-off-by: Rick Wertenbroek <rick.wertenbroek@gmail.com>

Applied to pci/endpoint for v6.14, thanks!

> ---
>  include/linux/pci-epf.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/include/linux/pci-epf.h b/include/linux/pci-epf.h
> index 18a3aeb62ae4..ee6156bcbbd0 100644
> --- a/include/linux/pci-epf.h
> +++ b/include/linux/pci-epf.h
> @@ -157,7 +157,7 @@ struct pci_epf {
>  	struct device		dev;
>  	const char		*name;
>  	struct pci_epf_header	*header;
> -	struct pci_epf_bar	bar[6];
> +	struct pci_epf_bar	bar[PCI_STD_NUM_BARS];
>  	u8			msi_interrupts;
>  	u16			msix_interrupts;
>  	u8			func_no;
> @@ -174,7 +174,7 @@ struct pci_epf {
>  	/* Below members are to attach secondary EPC to an endpoint function */
>  	struct pci_epc		*sec_epc;
>  	struct list_head	sec_epc_list;
> -	struct pci_epf_bar	sec_epc_bar[6];
> +	struct pci_epf_bar	sec_epc_bar[PCI_STD_NUM_BARS];
>  	u8			sec_epc_func_no;
>  	struct config_group	*group;
>  	unsigned int		is_bound;
> -- 
> 2.25.1
>
diff mbox series

Patch

diff --git a/include/linux/pci-epf.h b/include/linux/pci-epf.h
index 18a3aeb62ae4..ee6156bcbbd0 100644
--- a/include/linux/pci-epf.h
+++ b/include/linux/pci-epf.h
@@ -157,7 +157,7 @@  struct pci_epf {
 	struct device		dev;
 	const char		*name;
 	struct pci_epf_header	*header;
-	struct pci_epf_bar	bar[6];
+	struct pci_epf_bar	bar[PCI_STD_NUM_BARS];
 	u8			msi_interrupts;
 	u16			msix_interrupts;
 	u8			func_no;
@@ -174,7 +174,7 @@  struct pci_epf {
 	/* Below members are to attach secondary EPC to an endpoint function */
 	struct pci_epc		*sec_epc;
 	struct list_head	sec_epc_list;
-	struct pci_epf_bar	sec_epc_bar[6];
+	struct pci_epf_bar	sec_epc_bar[PCI_STD_NUM_BARS];
 	u8			sec_epc_func_no;
 	struct config_group	*group;
 	unsigned int		is_bound;