summaryrefslogtreecommitdiff
path: root/uart.h
blob: 4845150d481ee3a791eea2a8791a6f55e2acb7c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (C) 2010 Tobias Klauser <tklauser@distanz.ch>
 *
 * This file is part of nios2sim-ng.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License. See the file "COPYING" in the main directory of this archive
 * for more details.
 */

#ifndef _UART_H_
#define _UART_H_

#define UART_BASE		0x80681000
#define UART_SIZE		32

#define UART_RXDATA_REG		0
#define UART_TXDATA_REG		1
#define UART_STATUS_REG		2
#define UART_CONTROL_REG	3

extern struct device uart_core;

#endif /* _UART_H_ */
f
authorLinus Torvalds <torvalds@linux-foundation.org>2013-11-13 15:17:16 +0900
committerLinus Torvalds <torvalds@linux-foundation.org>2013-11-13 15:17:16 +0900
commitc08acff0544c5dadf892e3908799a5ca1d98e592 (patch)
tree52fbb693a523ef7c6eeb33dd58c6a95f6feb1ea5 /include/linux/percpu.h
parent10d0c9705e80bbd3d587c5fad24599aabaca6688 (diff)
parent90f2492cf9c84fd414ecfd2f40685fb5291a484e (diff)
Merge branch 'for-3.13' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu
Pull percpu changes from Tejun Heo: "Two smallish changes for percpu. Two patches to remove unused this_cpu_xor() and one to fix a bug in percpu init failure path so that it can reach the proper BUG() instead of oopsing earlier" * 'for-3.13' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu: x86: remove this_cpu_xor() implementation percpu: remove this_cpu_xor() implementation percpu: fix bootmem error handling in pcpu_page_first_chunk()
Diffstat (limited to 'include/linux/percpu.h')