1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * TI Wakeup M3 remote processor platform data 4 * 5 * Copyright (C) 2014-2015 Texas Instruments, Inc. 6 * 7 * Dave Gerlach <d-gerlach@ti.com> 8 */ 9 10 #ifndef _LINUX_PLATFORM_DATA_WKUP_M3_H 11 #define _LINUX_PLATFORM_DATA_WKUP_M3_H 12 13 struct platform_device; 14 15 struct wkup_m3_platform_data { 16 const char *reset_name; 17 18 int (*assert_reset)(struct platform_device *pdev, const char *name); 19 int (*deassert_reset)(struct platform_device *pdev, const char *name); 20 }; 21 22 #endif /* _LINUX_PLATFORM_DATA_WKUP_M3_H */ 23