summaryrefslogtreecommitdiff
path: root/board/nucleo-dartmonkey/fpsensor_detect.c
blob: 7a9c128211a0354cddab25092099c77ef5c3956b (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 get_fp_sensor_type(void)
{
	return FP_SENSOR_TYPE_FPC;
}

enum fp_transport_type get_fp_transport_type(void)
{
	return FP_TRANSPORT_TYPE_SPI;
}