[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [RFC 6/6] xen/arm: Replace early_printk call to printk call
On Sun, 2014-01-05 at 21:26 +0000, Julien Grall wrote: > > -/* Some device tree functions may be called both before and after the > - console is initialized. */ > -#define dt_printk(fmt, ...) \ > - do \ > - { \ > - if ( system_state == SYS_STATE_early_boot ) \ > - early_printk(fmt, ## __VA_ARGS__); \ > - else \ > - printk(fmt, ## __VA_ARGS__); \ > - } while (0) > +#define dt_printk(fmt, ...) printk(fmt, ## __VA_ARGS__); Since dt_printk basically existed solely as a hack to workaround the distinction between early_printk and printk I think you could just switch everything to printk directly. Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |