1 /* 2 * drivers/usb/sunxi_usb/manager/usb_manager.h 3 * (C) Copyright 2010-2015 4 * Allwinner Technology Co., Ltd. <www.allwinnertech.com> 5 * javen, 2011-4-14, create this file 6 * 7 * usb manager programme. 8 * 9 * This program is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU General Public License as 11 * published by the Free Software Foundation; either version 2 of 12 * the License, or (at your option) any later version. 13 * 14 */ 15 16 #ifndef __USB_MANAGER_H__ 17 #define __USB_MANAGER_H__ 18 19 #if 0 20 #define DMSG_DBG_MANAGER pr_debug 21 #else 22 #define DMSG_DBG_MANAGER(...) 23 #endif 24 __s32 create_node_file(struct platform_device *pdev); 25 __s32 remove_node_file(struct platform_device *pdev); 26 27 #endif /* __USB_MANAGER_H__ */ 28 29