Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
73c11f63
Commit
73c11f63
authored
May 20, 2004
by
bellard
Browse files
cleanup
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@821
c046a42c-6fe2-441c-8c8c-71466251a162
parent
660de336
Changes
1
Hide whitespace changes
Inline
Side-by-side
hw/ide.c
View file @
73c11f63
...
...
@@ -1517,21 +1517,6 @@ typedef struct PCIIDEState {
IDEState
ide_if
[
4
];
}
PCIIDEState
;
static
uint32_t
ide_read_config
(
PCIDevice
*
d
,
uint32_t
address
,
int
len
)
{
uint32_t
val
;
val
=
0
;
memcpy
(
&
val
,
d
->
config
+
address
,
len
);
return
val
;
}
static
void
ide_write_config
(
PCIDevice
*
d
,
uint32_t
address
,
uint32_t
val
,
int
len
)
{
memcpy
(
d
->
config
+
address
,
&
val
,
len
);
}
static
void
ide_map
(
PCIDevice
*
pci_dev
,
int
region_num
,
uint32_t
addr
,
uint32_t
size
,
int
type
)
{
...
...
@@ -1564,8 +1549,7 @@ void pci_ide_init(BlockDriverState **hd_table)
d
=
(
PCIIDEState
*
)
pci_register_device
(
"IDE"
,
sizeof
(
PCIIDEState
),
0
,
-
1
,
ide_read_config
,
ide_write_config
);
NULL
,
NULL
);
pci_conf
=
d
->
dev
.
config
;
pci_conf
[
0x00
]
=
0x86
;
// Intel
pci_conf
[
0x01
]
=
0x80
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment