summaryrefslogtreecommitdiff
path: root/common/fpsensor
diff options
context:
space:
mode:
Diffstat (limited to 'common/fpsensor')
-rw-r--r--common/fpsensor/build.mk4
-rw-r--r--common/fpsensor/fpsensor_stubs.c30
2 files changed, 0 insertions, 34 deletions
diff --git a/common/fpsensor/build.mk b/common/fpsensor/build.mk
index 03bc80f2ef..a1eeaa9932 100644
--- a/common/fpsensor/build.mk
+++ b/common/fpsensor/build.mk
@@ -10,7 +10,3 @@ _fpsensor_dir:=$(dir $(lastword $(MAKEFILE_LIST)))
all-obj-$(HAS_TASK_FPSENSOR)+=$(_fpsensor_dir)fpsensor_state.o
all-obj-$(HAS_TASK_FPSENSOR)+=$(_fpsensor_dir)fpsensor_crypto.o
all-obj-$(HAS_TASK_FPSENSOR)+=$(_fpsensor_dir)fpsensor.o
-
-ifeq ($(HAS_MOCK_FP_SENSOR),)
-all-obj-$(HAS_TASK_FPSENSOR)+=$(_fpsensor_dir)fpsensor_stubs.o
-endif
diff --git a/common/fpsensor/fpsensor_stubs.c b/common/fpsensor/fpsensor_stubs.c
deleted file mode 100644
index 3acaa689f5..0000000000
--- a/common/fpsensor/fpsensor_stubs.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Copyright 2019 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "common.h"
-#include "fpsensor_state.h"
-#include "panic.h"
-
-/*
- * These are built when we don't have the private driver files.
- * The definitions are intentionally kept separate from the mock
- * implementations so that we don't accidentally compile mocks into a release.
- */
-
-#if !defined(HAVE_FP_PRIVATE_DRIVER)
-
-int fp_sensor_init(void)
-{
- panic("fp_sensor_init stub should never be called\n");
- return EC_ERROR_UNKNOWN;
-}
-
-int fp_sensor_deinit(void)
-{
- panic("fp_sensor_deinit stub should never be called\n");
- return EC_ERROR_UNKNOWN;
-}
-
-#endif /* !HAVE_FP_PRIVATE_DRIVER */