Re: [PATCH 2/3] drm/radeon/kms: move mtrr range add and memory information

2009-09-10 Thread Dave Airlie
> > /* > + * Printing helpers > + */ > +#define PINF(s, arg...) printk(KERN_INFO "radeon " s, ##arg) > +#define PWRN(s, arg...) \ > + printk(KERN_WARNING "radeon (WR:%s:%d) " s, __FILE__, __LINE__, ##arg) > +#define PERR(s, arg...) \ > + printk(KERN_ERR "radeon (ER:%s:%d) " s, __FILE__,

[PATCH 2/3] drm/radeon/kms: move mtrr range add and memory information

2009-09-10 Thread Jerome Glisse
Move mtrr range and memory information printing to radeon_object_init, this are memory information and initialization common to all GPU and they better fit in this function. Will also prevent code duplication with upcoming init path changes. Signed-off-by: Jerome Glisse --- drivers/gpu/drm/radeo