diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-03-11 03:35:59 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-03-11 03:35:59 +0000 |
commit | d9caac09471f1d1454d2751d977c9423bc7d5d16 (patch) | |
tree | 3028194640483bc1d8d3b88ba1d79658f66b76a3 /drivers/sgi/char/sgicons.c | |
parent | de80c1f73c7368c7619cf264fd0b5f65de1d996c (diff) |
Compile fixes for CONFIG_SGI_NEWPORT_GFX.
Diffstat (limited to 'drivers/sgi/char/sgicons.c')
-rw-r--r-- | drivers/sgi/char/sgicons.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/sgi/char/sgicons.c b/drivers/sgi/char/sgicons.c index 2ade5a311..7df5f3393 100644 --- a/drivers/sgi/char/sgicons.c +++ b/drivers/sgi/char/sgicons.c @@ -1,5 +1,4 @@ -/* $Id: sgicons.c,v 1.10 1998/08/25 09:18:58 ralf Exp $ - * +/* * sgicons.c: Setting up and registering console I/O on the SGI. * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) @@ -10,6 +9,7 @@ #include <linux/init.h> #include <linux/kernel.h> #include <linux/errno.h> +#include <linux/module.h> #include <asm/uaccess.h> #include "gconsole.h" @@ -36,6 +36,9 @@ disable_gconsole (void) } } +EXPORT_SYMBOL(disable_gconsole); +EXPORT_SYMBOL(enable_gconsole); + void register_gconsole (struct console_ops *gc) { |