/* * bdc_cmd.h - header for the BDC debug functions * * Copyright (C) 2014 Broadcom Corporation * * Author: Ashwini Pahuja * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * */#ifndef __LINUX_BDC_CMD_H__#define __LINUX_BDC_CMD_H__/* Command operations */intbdc_address_device(structbdc*,u32);intbdc_config_ep(structbdc*,structbdc_ep*);intbdc_dconfig_ep(structbdc*,structbdc_ep*);intbdc_stop_ep(structbdc*,int);intbdc_ep_set_stall(structbdc*,int);intbdc_ep_clear_stall(structbdc*,int);intbdc_ep_set_halt(structbdc_ep*,u32,int);intbdc_ep_bla(structbdc*,structbdc_ep*,dma_addr_t);intbdc_function_wake(structbdc*,u8);intbdc_function_wake_fh(structbdc*,u8);#endif /* __LINUX_BDC_CMD_H__ */