Commit 3e53488a authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] M68k symbol exports

From: Geert Uytterhoeven <geert@linux-m68k.org>

M68k: Export missing symbols (from Matthias Urlichs)
parent 5ddecbec
......@@ -11,6 +11,7 @@
*/
#include <linux/config.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/tty.h>
......@@ -267,6 +268,7 @@ void __init config_mac(void)
*/
struct mac_model *macintosh_config;
EXPORT_SYMBOL(macintosh_config);
static struct mac_model mac_data_table[]=
{
......
......@@ -23,6 +23,8 @@
* a temporary VBR and a vector table for the duration of the test.
*/
#include <linux/module.h>
int hwreg_present( volatile void *regp )
{
int ret = 0;
......@@ -47,6 +49,7 @@ int hwreg_present( volatile void *regp )
return( ret );
}
EXPORT_SYMBOL(hwreg_present);
/* Basically the same, but writes a value into a word register, protected
* by a bus error handler. Returns 1 if successful, 0 otherwise.
......@@ -78,4 +81,5 @@ int hwreg_write( volatile void *regp, unsigned short val )
return( ret );
}
EXPORT_SYMBOL(hwreg_write);
......@@ -9,6 +9,7 @@
*/
#include <linux/config.h>
#include <linux/module.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/mm.h>
......@@ -40,6 +41,7 @@
* For 68040, this is _PAGE_CACHE040 (cachable, copyback)
*/
unsigned long mm_cachebits = 0;
EXPORT_SYMBOL(mm_cachebits);
#endif
static pte_t * __init kernel_page_table(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