Re: [PATCH v7 1/6] drm: move the buddy allocator from i915 into common drm

2022-01-11 Thread Arunpravin
yes, I will use Dual MIT/GPL Regards, Arun On 10/01/22 1:33 pm, Christian König wrote: > Am 09.01.22 um 15:19 schrieb Arunpravin: >> +// SPDX-License-Identifier: MIT > >> +MODULE_DESCRIPTION("DRM Buddy Allocator"); >> +MODULE_LICENSE("GPL"); > > I'm not an expert on this, but maybe we shoul

Re: [PATCH v7 1/6] drm: move the buddy allocator from i915 into common drm

2022-01-10 Thread Christian König
Am 09.01.22 um 15:19 schrieb Arunpravin: +// SPDX-License-Identifier: MIT +MODULE_DESCRIPTION("DRM Buddy Allocator"); +MODULE_LICENSE("GPL"); I'm not an expert on this, but maybe we should use "Dual MIT/GPL" here? The code is certainly MIT licensed. Regards, Christian.

[PATCH v7 1/6] drm: move the buddy allocator from i915 into common drm

2022-01-09 Thread Arunpravin
Move the base i915 buddy allocator code into drm - Move i915_buddy.h to include/drm - Move i915_buddy.c to drm root folder - Rename "i915" string with "drm" string wherever applicable - Rename "I915" string with "DRM" string wherever applicable - Fix header file dependencies - Fix alignment issues