From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Deegan Subject: Re: [PATCH 2/6] xen: infrastructure to have cross-platform video drivers Date: Thu, 6 Dec 2012 12:46:37 +0000 Message-ID: <20121206124637.GO82725@ocelot.phlegethon.org> References: <1354731588-32579-2-git-send-email-stefano.stabellini@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1354731588-32579-2-git-send-email-stefano.stabellini@eu.citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Stefano Stabellini Cc: xen-devel@lists.xensource.com, Ian.Campbell@citrix.com List-Id: xen-devel@lists.xenproject.org At 18:19 +0000 on 05 Dec (1354731584), Stefano Stabellini wrote: > diff --git a/xen/include/xen/video.h b/xen/include/xen/video.h > new file mode 100644 > index 0000000..e9bc92e > --- /dev/null > +++ b/xen/include/xen/video.h > @@ -0,0 +1,24 @@ > +/* > + * vga.h video.h ? :) > + * > + * This file is subject to the terms and conditions of the GNU General Public > + * License. See the file COPYING in the main directory of this archive > + * for more details. > + */ > + > +#ifndef _XEN_VIDEO_H > +#define _XEN_VIDEO_H > + > +#include > + > +#ifdef CONFIG_VIDEO > +void video_init(void); > +extern void (*video_puts)(const char *); > +void video_endboot(void); > +#else > +#define video_init() ((void)0) > +#define video_puts(s) ((void)0) > +#define video_endboot() ((void)0) > +#endif > + > +#endif /* _XEN_VIDEO_H */ > -- > 1.7.2.5