mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
0f740cb8e4
Move defines only needed by mv_udc.c to a file in the same directory. This allows usbtty to compile for mv_udc, but it still doesn't link. Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
14 lines
260 B
C
14 lines
260 B
C
/*
|
|
* Copyright 2011, Marvell Semiconductor Inc.
|
|
* Lei Wen <leiwen@marvell.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
|
|
#ifndef __MV_UDC_H__
|
|
#define __MV_UDC_H__
|
|
|
|
#define EP_MAX_PACKET_SIZE 0x200
|
|
#define EP0_MAX_PACKET_SIZE 64
|
|
#endif /* __MV_UDC_H__ */
|