summaryrefslogtreecommitdiff
path: root/board/asurada/usb_pd_policy.c
blob: 33c659708fa8a57acb7a7ee819f44144d514b253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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 "usb_pd.h"

int pd_snk_is_vbus_provided(int port)
{
	return 0;
}

void pd_power_supply_reset(int port)
{
}

int pd_check_vconn_swap(int port)
{
	return 0;
}

int pd_set_power_supply_ready(int port)
{
	return 0;
}