Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
da64c6ee
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
da64c6ee
编写于
10月 11, 2005
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
上级
f5154a98
b1b510aa
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
8 addition
and
11 deletion
+8
-11
arch/sparc/Kconfig
arch/sparc/Kconfig
+0
-4
arch/sparc/defconfig
arch/sparc/defconfig
+0
-1
arch/sparc64/kernel/head.S
arch/sparc64/kernel/head.S
+6
-2
drivers/serial/sunsab.c
drivers/serial/sunsab.c
+0
-1
drivers/serial/sunzilog.c
drivers/serial/sunzilog.c
+2
-3
未找到文件。
arch/sparc/Kconfig
浏览文件 @
da64c6ee
...
...
@@ -21,10 +21,6 @@ config GENERIC_ISA_DMA
bool
default y
config GENERIC_IOMAP
bool
default y
source "init/Kconfig"
menu "General machine setup"
...
...
arch/sparc/defconfig
浏览文件 @
da64c6ee
...
...
@@ -5,7 +5,6 @@ CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_HIGHMEM=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
#
# Code maturity level options
...
...
arch/sparc64/kernel/head.S
浏览文件 @
da64c6ee
...
...
@@ -191,8 +191,9 @@ prom_boot_mapping_phys_low:
stx
%
l3
,
[%
sp
+
2047
+
128
+
0x10
]
!
num_rets
,
5
stx
%
l2
,
[%
sp
+
2047
+
128
+
0x18
]
!
arg1
:
"translate"
stx
%
l5
,
[%
sp
+
2047
+
128
+
0x20
]
!
arg2
:
prom_mmu_ihandle_cache
srlx
%
l0
,
22
,
%
l3
sllx
%
l3
,
22
,
%
l3
/
*
PAGE
align
*/
srlx
%
l0
,
13
,
%
l3
sllx
%
l3
,
13
,
%
l3
stx
%
l3
,
[%
sp
+
2047
+
128
+
0x28
]
!
arg3
:
vaddr
,
our
PC
stx
%
g0
,
[%
sp
+
2047
+
128
+
0x30
]
!
res1
stx
%
g0
,
[%
sp
+
2047
+
128
+
0x38
]
!
res2
...
...
@@ -211,6 +212,9 @@ prom_boot_mapping_phys_low:
ldx
[%
sp
+
2047
+
128
+
0x48
],
%
l2
!
physaddr
high
stx
%
l2
,
[%
l4
+
0x0
]
ldx
[%
sp
+
2047
+
128
+
0x50
],
%
l3
!
physaddr
low
/
*
4
MB
align
*/
srlx
%
l3
,
22
,
%
l3
sllx
%
l3
,
22
,
%
l3
stx
%
l3
,
[%
l4
+
0x8
]
/
*
Leave
service
as
-
is
,
"call-method"
*/
...
...
drivers/serial/sunsab.c
浏览文件 @
da64c6ee
...
...
@@ -274,7 +274,6 @@ static void transmit_chars(struct uart_sunsab_port *up,
if
(
uart_circ_empty
(
xmit
)
||
uart_tx_stopped
(
&
up
->
port
))
{
up
->
interrupt_mask1
|=
SAB82532_IMR1_XPR
;
writeb
(
up
->
interrupt_mask1
,
&
up
->
regs
->
w
.
imr1
);
uart_write_wakeup
(
&
up
->
port
);
return
;
}
...
...
drivers/serial/sunzilog.c
浏览文件 @
da64c6ee
...
...
@@ -517,10 +517,9 @@ static void sunzilog_transmit_chars(struct uart_sunzilog_port *up,
if
(
up
->
port
.
info
==
NULL
)
goto
ack_tx_int
;
xmit
=
&
up
->
port
.
info
->
xmit
;
if
(
uart_circ_empty
(
xmit
))
{
uart_write_wakeup
(
&
up
->
port
);
if
(
uart_circ_empty
(
xmit
))
goto
ack_tx_int
;
}
if
(
uart_tx_stopped
(
&
up
->
port
))
goto
ack_tx_int
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录