mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 14:53:06 +00:00
15 lines
280 B
C
15 lines
280 B
C
|
/* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*
|
||
|
* Copyright (C) 2016 The Android Open Source Project
|
||
|
*/
|
||
|
|
||
|
#ifndef __NET_FASTBOOT_H__
|
||
|
#define __NET_FASTBOOT_H__
|
||
|
|
||
|
/**
|
||
|
* Wait for incoming UDP fastboot comands.
|
||
|
*/
|
||
|
void fastboot_udp_start_server(void);
|
||
|
|
||
|
#endif /* __NET_FASTBOOT_H__ */
|