Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
d05ac8fa
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d05ac8fa
编写于
12月 04, 2009
作者:
B
Blue Swirl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add "static" to please Sparse
Signed-off-by:
N
Blue Swirl
<
blauwirbel@gmail.com
>
上级
407f879a
变更
10
显示空白变更内容
内联
并排
Showing
10 changed file
with
11 addition
and
11 deletion
+11
-11
hw/eeprom93xx.c
hw/eeprom93xx.c
+1
-1
hw/fw_cfg.c
hw/fw_cfg.c
+1
-1
hw/ide/microdrive.c
hw/ide/microdrive.c
+1
-1
hw/ne2000-isa.c
hw/ne2000-isa.c
+1
-1
hw/ne2000.c
hw/ne2000.c
+1
-1
hw/pckbd.c
hw/pckbd.c
+1
-1
hw/realview.c
hw/realview.c
+1
-1
hw/twl92230.c
hw/twl92230.c
+1
-1
hw/vmware_vga.c
hw/vmware_vga.c
+2
-2
qerror.c
qerror.c
+1
-1
未找到文件。
hw/eeprom93xx.c
浏览文件 @
d05ac8fa
...
...
@@ -107,7 +107,7 @@ static void put_unused(QEMUFile *f, void *pv, size_t size)
exit
(
0
);
}
const
VMStateInfo
vmstate_hack_uint16_from_uint8
=
{
static
const
VMStateInfo
vmstate_hack_uint16_from_uint8
=
{
.
name
=
"uint16_from_uint8"
,
.
get
=
get_uint16_from_uint8
,
.
put
=
put_unused
,
...
...
hw/fw_cfg.c
浏览文件 @
d05ac8fa
...
...
@@ -182,7 +182,7 @@ static void put_unused(QEMUFile *f, void *pv, size_t size)
fprintf
(
stderr
,
"This functions shouldn't be called.
\n
"
);
}
const
VMStateInfo
vmstate_hack_uint32_as_uint16
=
{
static
const
VMStateInfo
vmstate_hack_uint32_as_uint16
=
{
.
name
=
"int32_as_uint16"
,
.
get
=
get_uint32_as_uint16
,
.
put
=
put_unused
,
...
...
hw/ide/microdrive.c
浏览文件 @
d05ac8fa
...
...
@@ -300,7 +300,7 @@ static void md_common_write(void *opaque, uint32_t at, uint16_t value)
}
}
const
VMStateDescription
vmstate_microdrive
=
{
static
const
VMStateDescription
vmstate_microdrive
=
{
.
name
=
"microdrive"
,
.
version_id
=
3
,
.
minimum_version_id
=
0
,
...
...
hw/ne2000-isa.c
浏览文件 @
d05ac8fa
...
...
@@ -50,7 +50,7 @@ static NetClientInfo net_ne2000_isa_info = {
.
cleanup
=
isa_ne2000_cleanup
,
};
const
VMStateDescription
vmstate_isa_ne2000
=
{
static
const
VMStateDescription
vmstate_isa_ne2000
=
{
.
name
=
"ne2000"
,
.
version_id
=
2
,
.
minimum_version_id
=
0
,
...
...
hw/ne2000.c
浏览文件 @
d05ac8fa
...
...
@@ -663,7 +663,7 @@ const VMStateDescription vmstate_ne2000 = {
}
};
const
VMStateDescription
vmstate_pci_ne2000
=
{
static
const
VMStateDescription
vmstate_pci_ne2000
=
{
.
name
=
"ne2000"
,
.
version_id
=
3
,
.
minimum_version_id
=
3
,
...
...
hw/pckbd.c
浏览文件 @
d05ac8fa
...
...
@@ -414,7 +414,7 @@ typedef struct ISAKBDState {
KBDState
kbd
;
}
ISAKBDState
;
const
VMStateDescription
vmstate_kbd_isa
=
{
static
const
VMStateDescription
vmstate_kbd_isa
=
{
.
name
=
"pckbd"
,
.
version_id
=
3
,
.
minimum_version_id
=
3
,
...
...
hw/realview.c
浏览文件 @
d05ac8fa
...
...
@@ -121,7 +121,7 @@ enum realview_board_type {
BOARD_PBX_A9
,
};
int
realview_board_id
[]
=
{
static
const
int
realview_board_id
[]
=
{
0x33b
,
0x33b
,
0x769
,
...
...
hw/twl92230.c
浏览文件 @
d05ac8fa
...
...
@@ -756,7 +756,7 @@ static void put_int32_as_uint16(QEMUFile *f, void *pv, size_t size)
qemu_put_be16
(
f
,
*
v
);
}
const
VMStateInfo
vmstate_hack_int32_as_uint16
=
{
static
const
VMStateInfo
vmstate_hack_int32_as_uint16
=
{
.
name
=
"int32_as_uint16"
,
.
get
=
get_int32_as_uint16
,
.
put
=
put_int32_as_uint16
,
...
...
hw/vmware_vga.c
浏览文件 @
d05ac8fa
...
...
@@ -1063,7 +1063,7 @@ static int vmsvga_post_load(void *opaque, int version_id)
return
0
;
}
const
VMStateDescription
vmstate_vmware_vga_internal
=
{
static
const
VMStateDescription
vmstate_vmware_vga_internal
=
{
.
name
=
"vmware_vga_internal"
,
.
version_id
=
0
,
.
minimum_version_id
=
0
,
...
...
@@ -1090,7 +1090,7 @@ const VMStateDescription vmstate_vmware_vga_internal = {
}
};
const
VMStateDescription
vmstate_vmware_vga
=
{
static
const
VMStateDescription
vmstate_vmware_vga
=
{
.
name
=
"vmware_vga"
,
.
version_id
=
0
,
.
minimum_version_id
=
0
,
...
...
qerror.c
浏览文件 @
d05ac8fa
...
...
@@ -39,7 +39,7 @@ static const QType qerror_type = {
*
* "running out of foo: %(foo)%%"
*/
const
QErrorStringTable
qerror_table
[]
=
{
static
const
QErrorStringTable
qerror_table
[]
=
{
{
.
error_fmt
=
QERR_COMMAND_NOT_FOUND
,
.
desc
=
"The command %(name) has not been found"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录