Merge branch 'x86-headers-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / avr32 / kernel / head.S
1 /*
2 * Non-board-specific low-level startup code
3 *
4 * Copyright (C) 2004-2006 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #include <linux/linkage.h>
11
12 #include <asm/page.h>
13
14 .section .init.text,"ax"
15 .global kernel_entry
16 kernel_entry:
17 /* Start the show */
18 lddpc pc, kernel_start_addr
19
20 .align 2
21 kernel_start_addr:
22 .long start_kernel
This page took 0.043685 seconds and 5 git commands to generate.