Skip to content

Commit

Permalink
ACPI: remove acpi_os_readable(), acpi_os_writable()
Browse files Browse the repository at this point in the history
...which are now unused

Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Len Brown committed Feb 16, 2007
1 parent 70c0846 commit fc955f6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 deletions.
20 changes: 0 additions & 20 deletions drivers/acpi/osl.c
Original file line number Diff line number Diff line change
Expand Up @@ -890,26 +890,6 @@ u32 acpi_os_get_line(char *buffer)
}
#endif /* ACPI_FUTURE_USAGE */

/* Assumes no unreadable holes inbetween */
u8 acpi_os_readable(void *ptr, acpi_size len)
{
#if defined(__i386__) || defined(__x86_64__)
char tmp;
return !__get_user(tmp, (char __user *)ptr)
&& !__get_user(tmp, (char __user *)ptr + len - 1);
#endif
return 1;
}

#ifdef ACPI_FUTURE_USAGE
u8 acpi_os_writable(void *ptr, acpi_size len)
{
/* could do dummy write (racy) or a kernel page table lookup.
The later may be difficult at early boot when kmap doesn't work yet. */
return 1;
}
#endif

acpi_status acpi_os_signal(u32 function, void *info)
{
switch (function) {
Expand Down
6 changes: 0 additions & 6 deletions include/acpi/acpiosxf.h
Original file line number Diff line number Diff line change
Expand Up @@ -240,12 +240,6 @@ acpi_status
acpi_os_validate_address(u8 space_id,
acpi_physical_address address, acpi_size length);

u8 acpi_os_readable(void *pointer, acpi_size length);

#ifdef ACPI_FUTURE_USAGE
u8 acpi_os_writable(void *pointer, acpi_size length);
#endif

u64 acpi_os_get_timer(void);

acpi_status acpi_os_signal(u32 function, void *info);
Expand Down

0 comments on commit fc955f6

Please sign in to comment.