Message ID | 20241205-vuart-ns8250-v1-7-e9aa923127eb@ford.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Introduce NS8250 UART emulator | expand |
On 06.12.2024 05:41, Denis Mukhin via B4 Relay wrote: > From: Denis Mukhin <dmukhin@ford.com> > > Introduce domain_has_vuart() for PPC port to be used in the console driver. > > Signed-off-by: Denis Mukhin <dmukhin@ford.com> > --- > xen/arch/ppc/include/asm/domain.h | 2 ++ > 1 file changed, 2 insertions(+) Please be sure to Cc the maintainer(s) of the file(s) you change. Else it may be pretty unlikely that you'll ever get an ack. Jan > --- a/xen/arch/ppc/include/asm/domain.h > +++ b/xen/arch/ppc/include/asm/domain.h > @@ -10,6 +10,8 @@ struct hvm_domain > uint64_t params[HVM_NR_PARAMS]; > }; > > +#define domain_has_vuart(d) false > + > /* TODO: Implement */ > #define guest_mode(r) ({ (void)(r); BUG_ON("unimplemented"); 0; }) > >
diff --git a/xen/arch/ppc/include/asm/domain.h b/xen/arch/ppc/include/asm/domain.h index 3a447272c6f28586bf0d610929adbf228579e13f..764978e6a61b9d7220ec10fe0763e3424d07d27a 100644 --- a/xen/arch/ppc/include/asm/domain.h +++ b/xen/arch/ppc/include/asm/domain.h @@ -10,6 +10,8 @@ struct hvm_domain uint64_t params[HVM_NR_PARAMS]; }; +#define domain_has_vuart(d) false + /* TODO: Implement */ #define guest_mode(r) ({ (void)(r); BUG_ON("unimplemented"); 0; })