mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-03 10:30:25 +01:00
Warning fix (use %p format for filp)
This commit is contained in:
parent
8926acac37
commit
8e51112fe0
2 changed files with 2 additions and 2 deletions
|
|
@ -445,7 +445,7 @@ static int DRM(dma_get_buffers_of_order)(struct file *filp, drm_dma_t *d,
|
|||
d->flags & _DRM_DMA_WAIT);
|
||||
if (!buf) break;
|
||||
if (buf->pending || buf->waiting) {
|
||||
DRM_ERROR("Free buffer %d in use by %x (w%d, p%d)\n",
|
||||
DRM_ERROR("Free buffer %d in use: filp %p (w%d, p%d)\n",
|
||||
buf->idx,
|
||||
buf->filp,
|
||||
buf->waiting,
|
||||
|
|
|
|||
|
|
@ -445,7 +445,7 @@ static int DRM(dma_get_buffers_of_order)(struct file *filp, drm_dma_t *d,
|
|||
d->flags & _DRM_DMA_WAIT);
|
||||
if (!buf) break;
|
||||
if (buf->pending || buf->waiting) {
|
||||
DRM_ERROR("Free buffer %d in use by %x (w%d, p%d)\n",
|
||||
DRM_ERROR("Free buffer %d in use: filp %p (w%d, p%d)\n",
|
||||
buf->idx,
|
||||
buf->filp,
|
||||
buf->waiting,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue