Commit a09f2c11 authored by Martin Pool's avatar Martin Pool Committed by David Mosberger

[PATCH] ia64: fpswa_interface needs to be exported

efivars can be built as a module, but it depends on 'fpswa_interface'
which is not exported by fpswa.c.  Patch below fixes this problem.
parent a159fe17
......@@ -13,6 +13,7 @@
#include <linux/sched.h>
#include <linux/tty.h>
#include <linux/vt_kern.h> /* For unblank_screen() */
#include <linux/module.h> /* for EXPORT_SYMBOL */
#include <asm/fpswa.h>
#include <asm/hardirq.h>
......@@ -47,6 +48,7 @@ register double f30 asm ("f30"); register double f31 asm ("f31");
extern spinlock_t timerlist_lock;
fpswa_interface_t *fpswa_interface;
EXPORT_SYMBOL(fpswa_interface);
void __init
trap_init (void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment