Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F164162651
D58301.id182273.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
926 B
Referenced Files
None
Subscribers
None
D58301.id182273.diff
View Options
diff --git a/sys/dev/acpica/apeivar.h b/sys/dev/acpica/apeivar.h
--- a/sys/dev/acpica/apeivar.h
+++ b/sys/dev/acpica/apeivar.h
@@ -38,16 +38,17 @@
#ifdef __i386__
static __inline uint64_t
-bus_read_8(struct resource_map *res, bus_size_t offset)
+bus_space_read_8(bus_space_tag_t tag, bus_space_handle_t bsh, bus_size_t offset)
{
- return (bus_read_4(res, offset) |
- ((uint64_t)bus_read_4(res, offset + 4)) << 32);
+ return (bus_space_read_4(tag, bsh, offset) |
+ ((uint64_t)bus_space_read_4(tag, bsh, offset + 4)) << 32);
}
static __inline void
-bus_write_8(struct resource_map *res, bus_size_t offset, uint64_t val)
+bus_space_write_8(bus_space_tag_t tag, bus_space_handle_t bsh,
+ bus_size_t offset, uint64_t val)
{
- bus_write_4(res, offset, val);
- bus_write_4(res, offset + 4, val >> 32);
+ bus_space_write_4(tag, bsh, offset, val);
+ bus_space_write_4(tag, bsh, offset + 4, val >> 32);
}
#endif
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jul 30, 6:49 AM (9 h, 28 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
35308860
Default Alt Text
D58301.id182273.diff (926 B)
Attached To
Mode
D58301: apei: Fix i386 build
Attached
Detach File
Event Timeline
Log In to Comment