Commit c6ecf7ed3131961e5aeedb0efd217afa0808798f

Authored by Takashi Iwai
Committed by Linus Torvalds
1 parent 65d406ace3

[PATCH] Add missing export of getnstimeofday()

Adds the missing EXPORT_SYMBOL_GPL for getnstimeofday() when
CONFIG_TIME_INTERPOLATION isn't set.  Needed by drivers/char/mmtimer.c

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -570,6 +570,7 @@
570 570 tv->tv_sec = x.tv_sec;
571 571 tv->tv_nsec = x.tv_usec * NSEC_PER_USEC;
572 572 }
  573 +EXPORT_SYMBOL_GPL(getnstimeofday);
573 574 #endif
574 575  
575 576 #if (BITS_PER_LONG < 64)