drm/i915: remove trailing semicolon in macro definition
The macro use will already have a semicolon. Signed-off-by: Tom Rix <trix@redhat.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20201127162828.2660230-1-trix@redhat.com
This commit is contained in:
parent
e5346a1ff3
commit
c33f83fd48
|
@ -104,7 +104,7 @@ void intel_device_info_print_static(const struct intel_device_info *info,
|
|||
drm_printf(p, "ppgtt-type: %d\n", info->ppgtt_type);
|
||||
drm_printf(p, "dma_mask_size: %u\n", info->dma_mask_size);
|
||||
|
||||
#define PRINT_FLAG(name) drm_printf(p, "%s: %s\n", #name, yesno(info->name));
|
||||
#define PRINT_FLAG(name) drm_printf(p, "%s: %s\n", #name, yesno(info->name))
|
||||
DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG);
|
||||
#undef PRINT_FLAG
|
||||
|
||||
|
|
Loading…
Reference in New Issue