Merge remote-tracking branch 'input-current/for-linus'
[deliverable/linux.git] / arch / avr32 / kernel / head.S
CommitLineData
5f97f7f9
HS
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>
5f97f7f9
HS
13
14 .section .init.text,"ax"
15 .global kernel_entry
16kernel_entry:
5f97f7f9
HS
17 /* Start the show */
18 lddpc pc, kernel_start_addr
19
20 .align 2
5f97f7f9
HS
21kernel_start_addr:
22 .long start_kernel
This page took 0.823786 seconds and 5 git commands to generate.