[PATCH v3 1/2] drm: Move debug macros out of drmP.h

2017-10-18 Thread Haneen Mohammed
This patch extract DRM_* debug macros from drmP.h to drm_print.h and move printing related functions used by these macros from drm_drv.[hc] to drm_print.[hc]. Signed-off-by: Haneen Mohammed --- Changes in v3: - Move debug macros and print functions into drm_print.[hc] instead of introducing drm_d

Re: [PATCH v3 1/2] drm: Move debug macros out of drmP.h

2017-10-18 Thread Haneen Mohammed
On Tue, Oct 17, 2017 at 03:54:13PM -0400, Sean Paul wrote: > On Tue, Oct 17, 2017 at 02:43:38AM -0600, Haneen Mohammed wrote: > > This patch extract DRM_* debug macros from drmP.h to drm_print.h and > > move printing related functions used by these macros from drm_drv.[hc] > > to drm_print.[hc]. >

Re: [PATCH v3 1/2] drm: Move debug macros out of drmP.h

2017-10-17 Thread Sean Paul
On Tue, Oct 17, 2017 at 02:43:38AM -0600, Haneen Mohammed wrote: > This patch extract DRM_* debug macros from drmP.h to drm_print.h and > move printing related functions used by these macros from drm_drv.[hc] > to drm_print.[hc]. > > Signed-off-by: Haneen Mohammed > --- > Changes in v3: > - Move