| 1 | /* |
| 2 | * Platform data definition for built-in OHCI controller of the |
| 3 | * Ralink RT3662/RT3883 SoCs |
| 4 | * |
| 5 | * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License version 2 as published |
| 9 | * by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #ifndef _RT3883_OHCI_PLATFORM_H |
| 13 | #define _RT3883_OHCI_PLATFORM_H |
| 14 | |
| 15 | struct rt3883_ohci_platform_data { |
| 16 | void (*start_hw)(void); |
| 17 | void (*stop_hw)(void); |
| 18 | }; |
| 19 | |
| 20 | #endif /* _RT3883_OHCI_PLATFORM_H */ |
| 21 | |