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