summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2018-07-12 14:29:48 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2018-07-12 14:44:01 +0100
commit9d25d62bb6ff62694e5226b02d79075eab304402 (patch)
tree0266a51fcf23172569434523ffffe846b759b79d /tests
parent5175aff31e00e17786ebb97aaaf25ddd38b5e72e (diff)
igt/pm_rpm: Pass NULL to require no extra module options
We use options!=NULL to determine if we should require the module to be reloaded and fail if we find it already loaded. In pm_rpm, we are only ensuring the MSR module is loaded, and only want default options. Fixes: 4dc2ce0e ("lib/kmod: Fail if the module is already loaded") Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: MichaƂ Winiarski <michal.winiarski@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/pm_rpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pm_rpm.c b/tests/pm_rpm.c
index 51d8f366..1f2647be 100644
--- a/tests/pm_rpm.c
+++ b/tests/pm_rpm.c
@@ -125,7 +125,7 @@ static int8_t *pm_data = NULL;
static int modprobe(const char *driver)
{
- return igt_kmod_load(driver, "");
+ return igt_kmod_load(driver, NULL);
}
/* If the read fails, then the machine doesn't support PC8+ residencies. */