mirror of
https://github.com/armbian/build.git
synced 2025-08-09 20:56:57 +02:00
* Bump imx6 edge to 5.12.y * Bump odroid xu4 edge to 5.12.y * Bump Jetson nano edge to 5.12.y * WIP: Bump sunxi to 5.12.y - create a copy of patches and make a new link - wireless patches needs adjutement to 5.12 - some patches are still failing * Adjust wireless patches to build on 5.12.y * Remove template wireless patch * Move Espressobin edge to 5.12.y * Bump mvebu to 5.12 - patch 92-mvebu-gpio-remove-hardcoded-timer-assignment.patch was disabled @heisath - adjusted wireless driver for 8723ds * Adjust sunxi / sunxi64 edge to compile * Fix kernel config for Jetson nano edge * bump meson64 to 5.12.y * bump rockchip edge to 5.12.y * Bump rockchip64 to 5.12.y * Bump rk322x edge to 5.12.y @paolosabatino * Cleanup im6, re-add 5.10.y patches since one is missing in 5.12.y * Update odroidxu4 edge links * rk322x: moved rk322x-edge to kernel 5.12, fix overlay compilation, retouched included kernel modules * Cleanup: remove deprecated config Co-authored-by: Paolo Sabatino <paolo.sabatino@gmail.com>
51 lines
1.9 KiB
Diff
51 lines
1.9 KiB
Diff
From ea69ff188dd5d9ac7162f05a22bf299b83a7536e Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
Date: Mon, 7 Dec 2015 09:33:28 +0100
|
|
Subject: [PATCH 005/146] drm: gem: cma: Export with handle allocator
|
|
|
|
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
---
|
|
drivers/gpu/drm/drm_gem_cma_helper.c | 3 ++-
|
|
include/drm/drm_gem_cma_helper.h | 4 ++++
|
|
2 files changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpu/drm/drm_gem_cma_helper.c b/drivers/gpu/drm/drm_gem_cma_helper.c
|
|
index 80a5115c3846..077c61f065d9 100644
|
|
--- a/drivers/gpu/drm/drm_gem_cma_helper.c
|
|
+++ b/drivers/gpu/drm/drm_gem_cma_helper.c
|
|
@@ -142,7 +142,7 @@ EXPORT_SYMBOL_GPL(drm_gem_cma_create);
|
|
* A struct drm_gem_cma_object * on success or an ERR_PTR()-encoded negative
|
|
* error code on failure.
|
|
*/
|
|
-static struct drm_gem_cma_object *
|
|
+struct drm_gem_cma_object *
|
|
drm_gem_cma_create_with_handle(struct drm_file *file_priv,
|
|
struct drm_device *drm, size_t size,
|
|
uint32_t *handle)
|
|
@@ -169,6 +169,7 @@ drm_gem_cma_create_with_handle(struct drm_file *file_priv,
|
|
|
|
return cma_obj;
|
|
}
|
|
+EXPORT_SYMBOL_GPL(drm_gem_cma_create_with_handle);
|
|
|
|
/**
|
|
* drm_gem_cma_free_object - free resources associated with a CMA GEM object
|
|
diff --git a/include/drm/drm_gem_cma_helper.h b/include/drm/drm_gem_cma_helper.h
|
|
index 19777145cf8e..79f397c91517 100644
|
|
--- a/include/drm/drm_gem_cma_helper.h
|
|
+++ b/include/drm/drm_gem_cma_helper.h
|
|
@@ -79,6 +79,10 @@ int drm_gem_cma_mmap(struct file *filp, struct vm_area_struct *vma);
|
|
/* allocate physical memory */
|
|
struct drm_gem_cma_object *drm_gem_cma_create(struct drm_device *drm,
|
|
size_t size);
|
|
+struct drm_gem_cma_object *
|
|
+drm_gem_cma_create_with_handle(struct drm_file *file_priv,
|
|
+ struct drm_device *drm, size_t size,
|
|
+ uint32_t *handle);
|
|
|
|
extern const struct vm_operations_struct drm_gem_cma_vm_ops;
|
|
|
|
--
|
|
2.17.1
|
|
|