simpla-dmabuf-drm: Use more weston like coding style

Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
Guido Günther 2018-03-15 17:33:19 +01:00 committed by Pekka Paalanen
parent 6ed5700da5
commit 512d29f828
1 changed files with 10 additions and 10 deletions

View File

@ -203,8 +203,8 @@ intel_unmap_bo(struct buffer *my_buf)
#ifdef HAVE_LIBDRM_FREEDRENO
#define ALIGN(v, a) ((v + a - 1) & ~(a - 1))
static
int fd_alloc_bo(struct buffer *buf)
static int
fd_alloc_bo(struct buffer *buf)
{
int flags = DRM_FREEDRENO_GEM_CACHE_WCOMBINE;
int size = buf->width * buf->height * buf->bpp / 8;
@ -218,14 +218,14 @@ int fd_alloc_bo(struct buffer *buf)
return 1;
}
static
void fd_free_bo(struct buffer *buf)
static void
fd_free_bo(struct buffer *buf)
{
fd_bo_del(buf->fd_bo);
}
static
int fd_bo_export_to_prime(struct buffer *buf)
static int
fd_bo_export_to_prime(struct buffer *buf)
{
buf->dmabuf_fd = fd_bo_dmabuf(buf->fd_bo);
if (buf->dmabuf_fd > 0)
@ -234,8 +234,8 @@ int fd_bo_export_to_prime(struct buffer *buf)
return 1;
}
static
int fd_map_bo(struct buffer *buf)
static int
fd_map_bo(struct buffer *buf)
{
buf->mmap = fd_bo_map(buf->fd_bo);
@ -245,8 +245,8 @@ int fd_map_bo(struct buffer *buf)
return 0;
}
static
void fd_unmap_bo(struct buffer *buf)
static void
fd_unmap_bo(struct buffer *buf)
{
}
#endif /* HAVE_LIBDRM_FREEDRENO */