From 6a75c811f86848edf478dc82815e57a71693b0a4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 28 Jun 2019 08:20:31 -0600 Subject: [PATCH] Fix some lower vs upper case problems in last commit. --- drivers/sensors/vl53l1x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/sensors/vl53l1x.c b/drivers/sensors/vl53l1x.c index f399c35532..24903ccdc8 100644 --- a/drivers/sensors/vl53l1x.c +++ b/drivers/sensors/vl53l1x.c @@ -288,10 +288,10 @@ static const struct file_operations g_vl53l1xfops = vl53l1x_write, /* write */ null, /* seek */ vl53l1x_ioctl, /* ioctl */ -#ifndef config_disable_poll +#ifndef CONFIG_DISABLE_POLL null, /* poll */ #endif -#ifndef config_disable_pseudofs_operations +#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS null, /* unlink */ #endif };