lkml.org 
[lkml]   [2018]   [Mar]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 09/19] powerpc/chrp/pci: Make some functions static
    Date
    These functions can all be static, make it so. Fix warnings treated as
    errors with W=1:

    arch/powerpc/platforms/chrp/pci.c:34:5: error: no previous prototype for ‘gg2_read_config’ [-Werror=missing-prototypes]
    arch/powerpc/platforms/chrp/pci.c:61:5: error: no previous prototype for ‘gg2_write_config’ [-Werror=missing-prototypes]
    arch/powerpc/platforms/chrp/pci.c:97:5: error: no previous prototype for ‘rtas_read_config’ [-Werror=missing-prototypes]
    arch/powerpc/platforms/chrp/pci.c:112:5: error: no previous prototype for ‘rtas_write_config’ [-Werror=missing-prototypes]

    Signed-off-by: Mathieu Malaterre <malat@debian.org>
    ---
    arch/powerpc/platforms/chrp/pci.c | 8 ++++----
    1 file changed, 4 insertions(+), 4 deletions(-)

    diff --git a/arch/powerpc/platforms/chrp/pci.c b/arch/powerpc/platforms/chrp/pci.c
    index 0f512d35f7c5..84e1fedb3796 100644
    --- a/arch/powerpc/platforms/chrp/pci.c
    +++ b/arch/powerpc/platforms/chrp/pci.c
    @@ -31,7 +31,7 @@ void __iomem *gg2_pci_config_base;
    * limit the bus number to 3 bits
    */

    -int gg2_read_config(struct pci_bus *bus, unsigned int devfn, int off,
    +static int gg2_read_config(struct pci_bus *bus, unsigned int devfn, int off,
    int len, u32 *val)
    {
    volatile void __iomem *cfg_data;
    @@ -58,7 +58,7 @@ int gg2_read_config(struct pci_bus *bus, unsigned int devfn, int off,
    return PCIBIOS_SUCCESSFUL;
    }

    -int gg2_write_config(struct pci_bus *bus, unsigned int devfn, int off,
    +static int gg2_write_config(struct pci_bus *bus, unsigned int devfn, int off,
    int len, u32 val)
    {
    volatile void __iomem *cfg_data;
    @@ -94,7 +94,7 @@ static struct pci_ops gg2_pci_ops =
    /*
    * Access functions for PCI config space using RTAS calls.
    */
    -int rtas_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
    +static int rtas_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
    int len, u32 *val)
    {
    struct pci_controller *hose = pci_bus_to_host(bus);
    @@ -109,7 +109,7 @@ int rtas_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
    return rval? PCIBIOS_DEVICE_NOT_FOUND: PCIBIOS_SUCCESSFUL;
    }

    -int rtas_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
    +static int rtas_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
    int len, u32 val)
    {
    struct pci_controller *hose = pci_bus_to_host(bus);
    --
    2.11.0
    \
     
     \ /
      Last update: 2018-03-22 21:23    [W:4.033 / U:0.088 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site