diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2016-12-02 17:50:26 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2016-12-02 17:50:26 +0000 |
commit | 31a34fb8692cac647fdc9a3d04f297d1b3c9bf98 (patch) | |
tree | dd46d7ec61798abf992db42cd5bb46f6d1841872 /lib | |
parent | cd1de41fd96a9d49018e314fc5fe50f8de4534d6 (diff) |
lib/igt_kmod: s/subtest__/igt__/ for kernel parameters
Use igt__ to detect kernel parameters indicating subtests.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/igt_kmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index dd70b50e..3dccac09 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -373,7 +373,7 @@ void igt_kselftests(const char *module_name, const char *module_options) continue; val = kmod_module_info_get_value(d); - if (!val || strncmp(val, "subtest__", 9)) + if (!val || strncmp(val, "igt__", 9)) continue; subtest = strdup(val); |