]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
arm/komeda: Compile komeda_debugfs_init() only if CONFIG_DEBUG_FS is enabled
authorLiviu Dudau <Liviu.Dudau@arm.com>
Mon, 25 Mar 2019 16:31:44 +0000 (16:31 +0000)
committerLiviu Dudau <Liviu.Dudau@arm.com>
Mon, 1 Apr 2019 19:21:53 +0000 (20:21 +0100)
We don't call this function if CONFIG_DEBUG_FS is not defined, but we
should not be compiling it either, as the declaration of the debugfs
core functions is not included.

Reported by the kbuild test robot.

Reviewed-by: James Qian Wang (Arm Technology China) <james.qian.wang@arm.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
drivers/gpu/drm/arm/display/komeda/komeda_dev.c

index b420c6205d6bf136be15da93c97ad624fc141ffd..24548b87e18273800509ec6cc9c0d8c8e5d7ac05 100644 (file)
@@ -44,6 +44,7 @@ static const struct file_operations komeda_register_fops = {
        .release        = single_release,
 };
 
+#ifdef CONFIG_DEBUG_FS
 static void komeda_debugfs_init(struct komeda_dev *mdev)
 {
        if (!debugfs_initialized())
@@ -56,6 +57,7 @@ static void komeda_debugfs_init(struct komeda_dev *mdev)
        debugfs_create_file("register", 0444, mdev->debugfs_root,
                            mdev, &komeda_register_fops);
 }
+#endif
 
 static int komeda_parse_pipe_dt(struct komeda_dev *mdev, struct device_node *np)
 {