Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * TI Wakeup M3 remote processor platform data
0004  *
0005  * Copyright (C) 2014-2015 Texas Instruments, Inc.
0006  *
0007  * Dave Gerlach <d-gerlach@ti.com>
0008  */
0009 
0010 #ifndef _LINUX_PLATFORM_DATA_WKUP_M3_H
0011 #define _LINUX_PLATFORM_DATA_WKUP_M3_H
0012 
0013 struct platform_device;
0014 
0015 struct wkup_m3_platform_data {
0016     const char *reset_name;
0017 
0018     int (*assert_reset)(struct platform_device *pdev, const char *name);
0019     int (*deassert_reset)(struct platform_device *pdev, const char *name);
0020 };
0021 
0022 #endif /* _LINUX_PLATFORM_DATA_WKUP_M3_H */