Export serial-related functions from kernel
This commit is contained in:
parent
fb1d7b7975
commit
d6f66ca2a0
2 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ COMMON_CFLAGS += -march=mips3
|
||||||
COMMON_ASFLAGS += -march=mips3
|
COMMON_ASFLAGS += -march=mips3
|
||||||
|
|
||||||
kernel_img_HEADERS += pci.h bitmap.h video.h gfxterm.h font.h \
|
kernel_img_HEADERS += pci.h bitmap.h video.h gfxterm.h font.h \
|
||||||
bitmap_scale.h bufio.h cs5536.h machine/pci.h
|
bitmap_scale.h bufio.h cs5536.h machine/pci.h serial.h
|
||||||
|
|
||||||
include $(srcdir)/conf/mips.mk
|
include $(srcdir)/conf/mips.mk
|
||||||
|
|
||||||
|
|
|
@ -88,9 +88,9 @@ struct grub_serial_port
|
||||||
grub_term_input_t term_in;
|
grub_term_input_t term_in;
|
||||||
};
|
};
|
||||||
|
|
||||||
grub_err_t grub_serial_register (struct grub_serial_port *port);
|
grub_err_t EXPORT_FUNC(grub_serial_register) (struct grub_serial_port *port);
|
||||||
|
|
||||||
void grub_serial_unregister (struct grub_serial_port *port);
|
void EXPORT_FUNC(grub_serial_unregister) (struct grub_serial_port *port);
|
||||||
|
|
||||||
/* Set default settings. */
|
/* Set default settings. */
|
||||||
static inline grub_err_t
|
static inline grub_err_t
|
||||||
|
@ -114,6 +114,6 @@ grub_serial_config_defaults (struct grub_serial_port *port)
|
||||||
void grub_ns8250_init (void);
|
void grub_ns8250_init (void);
|
||||||
char *grub_serial_ns8250_add_port (grub_port_t port);
|
char *grub_serial_ns8250_add_port (grub_port_t port);
|
||||||
extern struct grub_serial_driver grub_ns8250_driver;
|
extern struct grub_serial_driver grub_ns8250_driver;
|
||||||
void grub_serial_unregister_driver (struct grub_serial_driver *driver);
|
void EXPORT_FUNC(grub_serial_unregister_driver) (struct grub_serial_driver *driver);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue