diff options
Diffstat (limited to 'acpi')
-rw-r--r-- | acpi/acpifs.h | 4 | ||||
-rw-r--r-- | acpi/main.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/acpi/acpifs.h b/acpi/acpifs.h index 2e9063cc..8e359efb 100644 --- a/acpi/acpifs.h +++ b/acpi/acpifs.h @@ -104,10 +104,10 @@ struct acpifs }; /* Main FS pointer */ -struct acpifs *fs; +extern struct acpifs *fs; /* Global mapped time */ -volatile struct mapped_time_value *acpifs_maptime; +extern volatile struct mapped_time_value *acpifs_maptime; /* Update entry and node times */ #define UPDATE_TIMES(e, what) (\ diff --git a/acpi/main.c b/acpi/main.c index f675470c..ac325915 100644 --- a/acpi/main.c +++ b/acpi/main.c @@ -39,6 +39,10 @@ int netfs_maxsymlinks = 0; char *netfs_server_name = "acpi"; char *netfs_server_version = HURD_VERSION; +volatile struct mapped_time_value *acpifs_maptime; + +struct acpifs *fs; + int netfs_demuxer (mach_msg_header_t * inp, mach_msg_header_t * outp) { |