Le 21/12/2020 à 08:42, Cédric Le Goater a écrit :
It fixes these W=1 compile error :

../arch/powerpc/platforms/pseries/eeh_pseries.c:697:5: error: no previous 
prototype for ‘pseries_send_allow_unfreeze’ [-Werror=missing-prototypes]
   697 | int pseries_send_allow_unfreeze(struct pci_dn *pdn,
       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~

Cc: Frederic Barrat <fbar...@linux.ibm.com>
Signed-off-by: Cédric Le Goater <c...@kaod.org>
---
  arch/powerpc/platforms/pseries/eeh_pseries.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/platforms/pseries/eeh_pseries.c 
b/arch/powerpc/platforms/pseries/eeh_pseries.c
index de45ceb634f9..cb615dbd35e7 100644
--- a/arch/powerpc/platforms/pseries/eeh_pseries.c
+++ b/arch/powerpc/platforms/pseries/eeh_pseries.c
@@ -694,8 +694,8 @@ static int pseries_eeh_write_config(struct eeh_dev *edev, 
int where, int size, u
  }
#ifdef CONFIG_PCI_IOV
-int pseries_send_allow_unfreeze(struct pci_dn *pdn,
-                               u16 *vf_pe_array, int cur_vfs)
+static int pseries_send_allow_unfreeze(struct pci_dn *pdn,
+                                      u16 *vf_pe_array, int cur_vfs)

Doesn't this fit on one line ?

  {
        int rc;
        int ibm_allow_unfreeze = rtas_token("ibm,open-sriov-allow-unfreeze");

Reply via email to