summaryrefslogtreecommitdiff
path: root/board/nucleo-dartmonkey/fpsensor_detect.c
blob: 07dee3d0cb1d859a77036b66597cd14716c3fb59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright 2020 The ChromiumOS Authors
 * 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 fpsensor_detect_get_type(void)
{
	return FP_SENSOR_TYPE_FPC;
}

enum fp_transport_type get_fp_transport_type(void)
{
	return FP_TRANSPORT_TYPE_SPI;
}