mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 07:43:57 -04:00
$ make W=1 -j100 M=drivers/gpu/drm/xe
MODPOST drivers/gpu/drm/xe/Module.symvers
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/gpu/drm/xe/tests/xe_mocs_test.o
Fix is identical to '1d425066f15f ("drm/xe: Fix modpost warning on kunit
modules")'.
Fixes: a6a4ea6d7d ("drm/xe: Add mocs kunit")
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
(cherry picked from commit bb619d7122)
Link: https://patchwork.freedesktop.org/patch/msgid/20240213033548.76219-1-ashutosh.dixit@intel.com
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
27 lines
556 B
C
27 lines
556 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#include "xe_mocs_test.h"
|
|
|
|
#include <kunit/test.h>
|
|
|
|
static struct kunit_case xe_mocs_tests[] = {
|
|
KUNIT_CASE(xe_live_mocs_kernel_kunit),
|
|
KUNIT_CASE(xe_live_mocs_reset_kunit),
|
|
{}
|
|
};
|
|
|
|
static struct kunit_suite xe_mocs_test_suite = {
|
|
.name = "xe_mocs",
|
|
.test_cases = xe_mocs_tests,
|
|
};
|
|
|
|
kunit_test_suite(xe_mocs_test_suite);
|
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("xe_mocs kunit test");
|
|
MODULE_IMPORT_NS(EXPORTED_FOR_KUNIT_TESTING);
|