From: kfraser@localhost.localdomain Date: Wed, 16 Aug 2006 15:48:45 +0000 (+0100) Subject: [MINIOS] Fix the build after start_info interface changes. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15710^2~75 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=eac498c52b17c00d5730f554dd2eb0d9d2273bbe;p=xen.git [MINIOS] Fix the build after start_info interface changes. Signed-off-by: Anil Madhavapeddy --- diff --git a/extras/mini-os/console/xencons_ring.c b/extras/mini-os/console/xencons_ring.c index 6b02fcdc65..1f9f497866 100644 --- a/extras/mini-os/console/xencons_ring.c +++ b/extras/mini-os/console/xencons_ring.c @@ -14,13 +14,13 @@ static inline struct xencons_interface *xencons_interface(void) { - return mfn_to_virt(start_info.console_mfn); + return mfn_to_virt(start_info.console.domU.mfn); } static inline void notify_daemon(void) { /* Use evtchn: this is called early, before irq is set up. */ - notify_remote_via_evtchn(start_info.console_evtchn); + notify_remote_via_evtchn(start_info.console.domU.evtchn); } int xencons_ring_send_no_notify(const char *data, unsigned len) @@ -80,10 +80,10 @@ int xencons_ring_init(void) { int err; - if (!start_info.console_evtchn) + if (!start_info.console.domU.evtchn) return 0; - err = bind_evtchn(start_info.console_evtchn, handle_input, + err = bind_evtchn(start_info.console.domU.evtchn, handle_input, NULL); if (err <= 0) { printk("XEN console request chn bind failed %i\n", err);