1234567891011121314151617181920212223 |
- /* SPDX-License-Identifier: GPL-2.0 */
- /*
- * Copyright (C) 2011-2023 Samsung, Inc.
- *
- * 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.
- */
- /* usb notify layer v4.0 */
- #ifndef __LINUX_HOST_NOTIFY_CALSS_H__
- #define __LINUX_HOST_NOTIFY_CALSS_H__
- #ifdef CONFIG_USB_HOST_NOTIFY
- extern int notify_class_init(void);
- extern void notify_class_exit(void);
- #else
- static inline int notify_class_init(void) {return 0; }
- static inline void notify_class_exit(void) {}
- #endif
- #endif
|