~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to xen/include/xen/vga.h

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  vga.h
 
3
 *
 
4
 *  This file is subject to the terms and conditions of the GNU General Public
 
5
 *  License.  See the file COPYING in the main directory of this archive
 
6
 *  for more details.
 
7
 */
 
8
 
 
9
#ifndef _XEN_VGA_H
 
10
#define _XEN_VGA_H
 
11
 
 
12
#include <xen/config.h>
 
13
 
 
14
#ifdef CONFIG_VGA
 
15
extern struct xen_vga_console_info vga_console_info;
 
16
void vga_init(void);
 
17
void vga_endboot(void);
 
18
extern void (*vga_puts)(const char *);
 
19
#else
 
20
#define vga_init()    ((void)0)
 
21
#define vga_endboot() ((void)0)
 
22
#define vga_puts(s)   ((void)0)
 
23
#endif
 
24
 
 
25
#endif /* _XEN_VGA_H */