1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2003 4 * Gerry Hamel, geh@ti.com, Texas Instruments 5 * 6 * Based on 7 * linux/drivers/usbd/ep0.c 8 * 9 * Copyright (c) 2000, 2001, 2002 Lineo 10 * Copyright (c) 2001 Hewlett Packard 11 * 12 * By: 13 * Stuart Lynne <sl@lineo.com>, 14 * Tom Rushworth <tbr@lineo.com>, 15 * Bruce Balden <balden@lineo.com> 16 */ 17 18 #ifndef __USBDCORE_EP0_H__ 19 #define __USBDCORE_EP0_H__ 20 21 22 int ep0_recv_setup (struct urb *urb); 23 24 25 #endif 26