Skip to content

Commit

Permalink
Orion: add __init attribute to all boot time-only functions
Browse files Browse the repository at this point in the history
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Reviewed-by: Tzachi Perelstein <tzachi@marvell.com>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
  • Loading branch information
Lennert Buytenhek authored and Nicolas Pitre committed Mar 27, 2008
1 parent 1419468 commit a998427
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-orion/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ struct sys_timer orion_timer = {
/*
* Identify device ID and rev from PCIE configuration header space '0'.
*/
static void orion_id(u32 *dev, u32 *rev, char **dev_name)
static void __init orion_id(u32 *dev, u32 *rev, char **dev_name)
{
orion_pcie_id(dev, rev);

Expand Down
16 changes: 8 additions & 8 deletions arch/arm/mach-orion/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
****************************************************************************/
#define PCIE_BASE ((void __iomem *)ORION_PCIE_VIRT_BASE)

void orion_pcie_id(u32 *dev, u32 *rev)
void __init orion_pcie_id(u32 *dev, u32 *rev)
{
*dev = orion_pcie_dev_id(PCIE_BASE);
*rev = orion_pcie_rev(PCIE_BASE);
Expand Down Expand Up @@ -136,7 +136,7 @@ struct pci_ops pcie_ops = {
};


static int pcie_setup(struct pci_sys_data *sys)
static int __init pcie_setup(struct pci_sys_data *sys)
{
struct resource *res;
int dev;
Expand Down Expand Up @@ -362,7 +362,7 @@ struct pci_ops pci_ops = {
.write = orion_pci_wr_conf,
};

static void orion_pci_set_bus_nr(int nr)
static void __init orion_pci_set_bus_nr(int nr)
{
u32 p2p = orion_read(PCI_P2P_CONF);

Expand All @@ -387,7 +387,7 @@ static void orion_pci_set_bus_nr(int nr)
}
}

static void orion_pci_master_slave_enable(void)
static void __init orion_pci_master_slave_enable(void)
{
int bus_nr, dev_nr, func, reg;
u32 val;
Expand All @@ -401,7 +401,7 @@ static void orion_pci_master_slave_enable(void)
orion_pci_hw_wr_conf(bus_nr, dev_nr, func, reg, 4, val | 0x7);
}

static void orion_setup_pci_wins(struct mbus_dram_target_info *dram)
static void __init orion_setup_pci_wins(struct mbus_dram_target_info *dram)
{
u32 win_enable;
int bus;
Expand Down Expand Up @@ -461,7 +461,7 @@ static void orion_setup_pci_wins(struct mbus_dram_target_info *dram)
orion_setbits(PCI_ADDR_DECODE_CTRL, 1);
}

static int pci_setup(struct pci_sys_data *sys)
static int __init pci_setup(struct pci_sys_data *sys)
{
struct resource *res;

Expand Down Expand Up @@ -519,7 +519,7 @@ static int pci_setup(struct pci_sys_data *sys)
/*****************************************************************************
* General PCIE + PCI
****************************************************************************/
int orion_pci_sys_setup(int nr, struct pci_sys_data *sys)
int __init orion_pci_sys_setup(int nr, struct pci_sys_data *sys)
{
int ret = 0;

Expand All @@ -534,7 +534,7 @@ int orion_pci_sys_setup(int nr, struct pci_sys_data *sys)
return ret;
}

struct pci_bus *orion_pci_sys_scan_bus(int nr, struct pci_sys_data *sys)
struct pci_bus __init *orion_pci_sys_scan_bus(int nr, struct pci_sys_data *sys)
{
struct pci_bus *bus;

Expand Down

0 comments on commit a998427

Please sign in to comment.