]> xenbits.xensource.com Git - mini-os.git/commitdiff
Mini-OS: add EXPORT_SYMBOL() instances to time.c
authorJuergen Gross <jgross@suse.com>
Mon, 27 Nov 2023 10:25:12 +0000 (11:25 +0100)
committerJulien Grall <jgrall@amazon.com>
Mon, 4 Dec 2023 16:52:57 +0000 (16:52 +0000)
Add the needed instances of EXPORT_SYMBOL() to time.c.

Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
arch/arm/time.c
arch/x86/time.c

index a088981ed1aeb4150f16a8ad7e3fb8d307d5899e..3483511a9e12933e05fbfceee4c1f51d0029b997 100644 (file)
@@ -83,6 +83,7 @@ int gettimeofday(struct timeval *tv, void *tz)
 
     return 0;
 }
+EXPORT_SYMBOL(gettimeofday);
 
 /* Set the timer and mask. */
 void write_timer_ctl(uint32_t value) {
index 8077c80ccd3b9e3cd91a7af82bb251c1f239704b..332c0260d318d6e796c95f4e319bc1efb56e5aea 100644 (file)
@@ -204,7 +204,7 @@ int gettimeofday(struct timeval *tv, void *tz)
 
     return 0;
 }
-
+EXPORT_SYMBOL(gettimeofday);
 
 void block_domain(s_time_t until)
 {