summaryrefslogtreecommitdiff
path: root/board/nucleo-dartmonkey/fpsensor_detect.c
blob: 72b9b89e11b8db86f3370b08c6d9ee40d260a3b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright 2020 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 "fpsensor_detect.h"

enum fp_sensor_type get_fp_sensor_type(void)
{
	return FP_SENSOR_TYPE_FPC;
}

enum fp_transport_type get_fp_transport_type(void)
{
	return FP_TRANSPORT_TYPE_SPI;
}