aboutsummaryrefslogtreecommitdiffstats
path: root/module/splat/splat-linux.c
diff options
context:
space:
mode:
Diffstat (limited to 'module/splat/splat-linux.c')
-rw-r--r--module/splat/splat-linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/splat/splat-linux.c b/module/splat/splat-linux.c
index 3652267f9..b5a1f142e 100644
--- a/module/splat/splat-linux.c
+++ b/module/splat/splat-linux.c
@@ -216,7 +216,7 @@ splat_linux_init(void)
spin_lock_init(&sub->test_lock);
sub->desc.id = SPLAT_SUBSYSTEM_LINUX;
- SPLAT_TEST_INIT(sub, SPLAT_LINUX_TEST1_NAME, SPLAT_LINUX_TEST1_DESC,
+ splat_test_init(sub, SPLAT_LINUX_TEST1_NAME, SPLAT_LINUX_TEST1_DESC,
SPLAT_LINUX_TEST1_ID, splat_linux_test1);
return sub;
@@ -226,7 +226,7 @@ void
splat_linux_fini(splat_subsystem_t *sub)
{
ASSERT(sub);
- SPLAT_TEST_FINI(sub, SPLAT_LINUX_TEST1_ID);
+ splat_test_fini(sub, SPLAT_LINUX_TEST1_ID);
kfree(sub);
}