Message ID | 20180920172913.10337-1-eric.engestrom@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [libdrm] omap: fix symbol annotations | expand |
On Thu, Sep 20, 2018 at 06:29:13PM +0100, Eric Engestrom wrote: > Fixes: f3f7266d94e0354bfd97 "omap: annotate public functions" > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi > --- > omap/omap_drm.c | 24 ++++++++++++------------ > 1 file changed, 12 insertions(+), 12 deletions(-) > > diff --git a/omap/omap_drm.c b/omap/omap_drm.c > index 3136e04e4170ac3bb94d..3aed4e0a2f65a9aec6f5 100644 > --- a/omap/omap_drm.c > +++ b/omap/omap_drm.c > @@ -128,8 +128,8 @@ drm_public void omap_device_del(struct omap_device *dev) > free(dev); > } > > -int > -drm_public omap_get_param(struct omap_device *dev, uint64_t param, uint64_t *value) > +drm_public int > +omap_get_param(struct omap_device *dev, uint64_t param, uint64_t *value) > { > struct drm_omap_param req = { > .param = param, > @@ -146,8 +146,8 @@ drm_public omap_get_param(struct omap_device *dev, uint64_t param, uint64_t *val > return 0; > } > > -int > -drm_public omap_set_param(struct omap_device *dev, uint64_t param, uint64_t value) > +drm_public int > +omap_set_param(struct omap_device *dev, uint64_t param, uint64_t value) > { > struct drm_omap_param req = { > .param = param, > @@ -226,8 +226,8 @@ static struct omap_bo * omap_bo_new_impl(struct omap_device *dev, > > > /* allocate a new (un-tiled) buffer object */ > -struct omap_bo * > -drm_public omap_bo_new(struct omap_device *dev, uint32_t size, uint32_t flags) > +drm_public struct omap_bo * > +omap_bo_new(struct omap_device *dev, uint32_t size, uint32_t flags) > { > union omap_gem_size gsize = { > .bytes = size, > @@ -239,8 +239,8 @@ drm_public omap_bo_new(struct omap_device *dev, uint32_t size, uint32_t flags) > } > > /* allocate a new buffer object */ > -struct omap_bo * > -drm_public omap_bo_new_tiled(struct omap_device *dev, uint32_t width, > +drm_public struct omap_bo * > +omap_bo_new_tiled(struct omap_device *dev, uint32_t width, > uint32_t height, uint32_t flags) > { > union omap_gem_size gsize = { > @@ -281,8 +281,8 @@ static int get_buffer_info(struct omap_bo *bo) > } > > /* import a buffer object from DRI2 name */ > -struct omap_bo * > -drm_public omap_bo_from_name(struct omap_device *dev, uint32_t name) > +drm_public struct omap_bo * > +omap_bo_from_name(struct omap_device *dev, uint32_t name) > { > struct omap_bo *bo = NULL; > struct drm_gem_open req = { > @@ -315,8 +315,8 @@ drm_public omap_bo_from_name(struct omap_device *dev, uint32_t name) > * fd so caller should close() the fd when it is otherwise done > * with it (even if it is still using the 'struct omap_bo *') > */ > -struct omap_bo * > -drm_public omap_bo_from_dmabuf(struct omap_device *dev, int fd) > +drm_public struct omap_bo * > +omap_bo_from_dmabuf(struct omap_device *dev, int fd) > { > struct omap_bo *bo = NULL; > struct drm_prime_handle req = { > -- > Cheers, > Eric >
diff --git a/omap/omap_drm.c b/omap/omap_drm.c index 3136e04e4170ac3bb94d..3aed4e0a2f65a9aec6f5 100644 --- a/omap/omap_drm.c +++ b/omap/omap_drm.c @@ -128,8 +128,8 @@ drm_public void omap_device_del(struct omap_device *dev) free(dev); } -int -drm_public omap_get_param(struct omap_device *dev, uint64_t param, uint64_t *value) +drm_public int +omap_get_param(struct omap_device *dev, uint64_t param, uint64_t *value) { struct drm_omap_param req = { .param = param, @@ -146,8 +146,8 @@ drm_public omap_get_param(struct omap_device *dev, uint64_t param, uint64_t *val return 0; } -int -drm_public omap_set_param(struct omap_device *dev, uint64_t param, uint64_t value) +drm_public int +omap_set_param(struct omap_device *dev, uint64_t param, uint64_t value) { struct drm_omap_param req = { .param = param, @@ -226,8 +226,8 @@ static struct omap_bo * omap_bo_new_impl(struct omap_device *dev, /* allocate a new (un-tiled) buffer object */ -struct omap_bo * -drm_public omap_bo_new(struct omap_device *dev, uint32_t size, uint32_t flags) +drm_public struct omap_bo * +omap_bo_new(struct omap_device *dev, uint32_t size, uint32_t flags) { union omap_gem_size gsize = { .bytes = size, @@ -239,8 +239,8 @@ drm_public omap_bo_new(struct omap_device *dev, uint32_t size, uint32_t flags) } /* allocate a new buffer object */ -struct omap_bo * -drm_public omap_bo_new_tiled(struct omap_device *dev, uint32_t width, +drm_public struct omap_bo * +omap_bo_new_tiled(struct omap_device *dev, uint32_t width, uint32_t height, uint32_t flags) { union omap_gem_size gsize = { @@ -281,8 +281,8 @@ static int get_buffer_info(struct omap_bo *bo) } /* import a buffer object from DRI2 name */ -struct omap_bo * -drm_public omap_bo_from_name(struct omap_device *dev, uint32_t name) +drm_public struct omap_bo * +omap_bo_from_name(struct omap_device *dev, uint32_t name) { struct omap_bo *bo = NULL; struct drm_gem_open req = { @@ -315,8 +315,8 @@ drm_public omap_bo_from_name(struct omap_device *dev, uint32_t name) * fd so caller should close() the fd when it is otherwise done * with it (even if it is still using the 'struct omap_bo *') */ -struct omap_bo * -drm_public omap_bo_from_dmabuf(struct omap_device *dev, int fd) +drm_public struct omap_bo * +omap_bo_from_dmabuf(struct omap_device *dev, int fd) { struct omap_bo *bo = NULL; struct drm_prime_handle req = {
Fixes: f3f7266d94e0354bfd97 "omap: annotate public functions" Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> --- omap/omap_drm.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-)