Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62951
b: refs/heads/master
c: ed5f656
h: refs/heads/master
i:
  62949: 1cca32a
  62947: 7d343d2
  62943: a4258d4
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jul 26, 2007
1 parent 8fd57a4 commit 84df4c8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 55fe977187405edaaa9b2519b561e97ff1d2eeee
refs/heads/master: ed5f6561436a1a0b38f4130bdb1fed00f14e60b5
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <asm/system.h>
#include <asm/asm-offsets.h>

.section .text.head, "ax"
.globl swapper_pg_dir
.globl _stext
swapper_pg_dir=SWAPPER_PGD
Expand Down
10 changes: 5 additions & 5 deletions trunk/arch/alpha/kernel/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ pcibios_init(void)

subsys_initcall(pcibios_init);

char * __init
char * __devinit
pcibios_setup(char *str)
{
return str;
Expand All @@ -204,7 +204,7 @@ pcibios_setup(char *str)
#ifdef ALPHA_RESTORE_SRM_SETUP
static struct pdev_srm_saved_conf *srm_saved_configs;

void __init
void __devinit
pdev_save_srm_config(struct pci_dev *dev)
{
struct pdev_srm_saved_conf *tmp;
Expand Down Expand Up @@ -247,14 +247,14 @@ pci_restore_srm_config(void)
}
#endif

void __init
void __devinit
pcibios_fixup_resource(struct resource *res, struct resource *root)
{
res->start += root->start;
res->end += root->start;
}

void __init
void __devinit
pcibios_fixup_device_resources(struct pci_dev *dev, struct pci_bus *bus)
{
/* Update device resources. */
Expand All @@ -273,7 +273,7 @@ pcibios_fixup_device_resources(struct pci_dev *dev, struct pci_bus *bus)
}
}

void __init
void __devinit
pcibios_fixup_bus(struct pci_bus *bus)
{
/* Propagate hose info into the subordinate devices. */
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/alpha/kernel/pci_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ size_for_memory(unsigned long max)
return max;
}

struct pci_iommu_arena *
struct pci_iommu_arena * __init
iommu_arena_new_node(int nid, struct pci_controller *hose, dma_addr_t base,
unsigned long window_size, unsigned long align)
{
Expand Down Expand Up @@ -117,7 +117,7 @@ iommu_arena_new_node(int nid, struct pci_controller *hose, dma_addr_t base,
return arena;
}

struct pci_iommu_arena *
struct pci_iommu_arena * __init
iommu_arena_new(struct pci_controller *hose, dma_addr_t base,
unsigned long window_size, unsigned long align)
{
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/alpha/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ secondary_cpu_start(int cpuid, struct task_struct *idle)
/*
* Bring one cpu online.
*/
static int __devinit
static int __cpuinit
smp_boot_one_cpu(int cpuid)
{
struct task_struct *idle;
Expand Down Expand Up @@ -487,7 +487,7 @@ smp_prepare_boot_cpu(void)
{
}

int __devinit
int __cpuinit
__cpu_up(unsigned int cpu)
{
smp_boot_one_cpu(cpu);
Expand Down Expand Up @@ -541,7 +541,7 @@ smp_percpu_timer_interrupt(struct pt_regs *regs)
set_irq_regs(old_regs);
}

int __init
int
setup_profiling_timer(unsigned int multiplier)
{
return -EINVAL;
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ SECTIONS

_text = .; /* Text and read-only data */
.text : {
*(.text.head)
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
Expand Down

0 comments on commit 84df4c8

Please sign in to comment.