Marcin Slusarz
2011-Jan-09 17:30 UTC
[Nouveau] [libdrm PATCH 1/3] nouveau: remove unused OUT_RELOC2 and OUT_RELOCr
--- nouveau/nouveau_pushbuf.h | 17 ----------------- 1 files changed, 0 insertions(+), 17 deletions(-) diff --git a/nouveau/nouveau_pushbuf.h b/nouveau/nouveau_pushbuf.h index 2a98789..70d0f28 100644 --- a/nouveau/nouveau_pushbuf.h +++ b/nouveau/nouveau_pushbuf.h @@ -109,15 +109,6 @@ OUT_RELOC(struct nouveau_channel *chan, struct nouveau_bo *bo, data, 0, flags, vor, tor); } -static __inline__ int -OUT_RELOC2(struct nouveau_channel *chan, struct nouveau_bo *bo, - unsigned data, unsigned data2, unsigned flags, - unsigned vor, unsigned tor) -{ - return nouveau_pushbuf_emit_reloc(chan, chan->cur++, bo, - data, data2, flags, vor, tor); -} - /* Raw data + flags depending on FB/TT buffer */ static __inline__ int OUT_RELOCd(struct nouveau_channel *chan, struct nouveau_bo *bo, @@ -143,14 +134,6 @@ OUT_RELOCl(struct nouveau_channel *chan, struct nouveau_bo *bo, return OUT_RELOC(chan, bo, delta, flags | NOUVEAU_BO_LOW, 0, 0); } -/* Low 32-bits of offset + GPU linear access range info */ -static __inline__ int -OUT_RELOCr(struct nouveau_channel *chan, struct nouveau_bo *bo, - unsigned delta, unsigned size, unsigned flags) -{ - return OUT_RELOC2(chan, bo, delta, size, flags | NOUVEAU_BO_LOW, 0, 0); -} - /* High 32-bits of offset */ static __inline__ int OUT_RELOCh(struct nouveau_channel *chan, struct nouveau_bo *bo, -- 1.7.3.3
Francisco Jerez
2011-Jan-12 18:26 UTC
[Nouveau] [libdrm PATCH 1/3] nouveau: remove unused OUT_RELOC2 and OUT_RELOCr
Marcin Slusarz <marcin.slusarz at gmail.com> writes:> --- > nouveau/nouveau_pushbuf.h | 17 ----------------- > 1 files changed, 0 insertions(+), 17 deletions(-) > > diff --git a/nouveau/nouveau_pushbuf.h b/nouveau/nouveau_pushbuf.h > index 2a98789..70d0f28 100644 > --- a/nouveau/nouveau_pushbuf.h > +++ b/nouveau/nouveau_pushbuf.h > @@ -109,15 +109,6 @@ OUT_RELOC(struct nouveau_channel *chan, struct nouveau_bo *bo, > data, 0, flags, vor, tor); > } > > -static __inline__ int > -OUT_RELOC2(struct nouveau_channel *chan, struct nouveau_bo *bo, > - unsigned data, unsigned data2, unsigned flags, > - unsigned vor, unsigned tor) > -{ > - return nouveau_pushbuf_emit_reloc(chan, chan->cur++, bo, > - data, data2, flags, vor, tor); > -} > - > /* Raw data + flags depending on FB/TT buffer */ > static __inline__ int > OUT_RELOCd(struct nouveau_channel *chan, struct nouveau_bo *bo, > @@ -143,14 +134,6 @@ OUT_RELOCl(struct nouveau_channel *chan, struct nouveau_bo *bo, > return OUT_RELOC(chan, bo, delta, flags | NOUVEAU_BO_LOW, 0, 0); > } > > -/* Low 32-bits of offset + GPU linear access range info */ > -static __inline__ int > -OUT_RELOCr(struct nouveau_channel *chan, struct nouveau_bo *bo, > - unsigned delta, unsigned size, unsigned flags) > -{ > - return OUT_RELOC2(chan, bo, delta, size, flags | NOUVEAU_BO_LOW, 0, 0); > -} > - > /* High 32-bits of offset */ > static __inline__ int > OUT_RELOCh(struct nouveau_channel *chan, struct nouveau_bo *bo,This patch series looks like a good clean-up. Ben, do you have any additional changes in mind for the libdrm API? (If you do they could go in together to avoid annoying users more often than necessary) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 229 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20110112/f9077f6f/attachment.pgp>