mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
staging/omapdrm: Fix spacing coding style in omap_gem_dmabuf.c
The following errors fixed. - ERROR: "foo * bar" should be "foo *bar" Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
696e3ca30a
commit
11d3d27b69
1 changed files with 2 additions and 2 deletions
|
@ -191,13 +191,13 @@ struct dma_buf_ops omap_dmabuf_ops = {
|
|||
.mmap = omap_gem_dmabuf_mmap,
|
||||
};
|
||||
|
||||
struct dma_buf * omap_gem_prime_export(struct drm_device *dev,
|
||||
struct dma_buf *omap_gem_prime_export(struct drm_device *dev,
|
||||
struct drm_gem_object *obj, int flags)
|
||||
{
|
||||
return dma_buf_export(obj, &omap_dmabuf_ops, obj->size, 0600);
|
||||
}
|
||||
|
||||
struct drm_gem_object * omap_gem_prime_import(struct drm_device *dev,
|
||||
struct drm_gem_object *omap_gem_prime_import(struct drm_device *dev,
|
||||
struct dma_buf *buffer)
|
||||
{
|
||||
struct drm_gem_object *obj;
|
||||
|
|
Loading…
Add table
Reference in a new issue