2018-12-28 15:31:53 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
2006-11-11 13:18:39 +07:00
|
|
|
*
|
2018-12-28 15:31:53 +07:00
|
|
|
* Arch specific extensions to struct device
|
2006-11-11 13:18:39 +07:00
|
|
|
*/
|
2012-01-13 14:27:38 +07:00
|
|
|
#ifndef __ASM_SH_DEVICE_H
|
|
|
|
#define __ASM_SH_DEVICE_H
|
2009-07-31 14:47:17 +07:00
|
|
|
|
2012-01-13 14:27:38 +07:00
|
|
|
#include <asm-generic/device.h>
|
2006-11-11 13:18:39 +07:00
|
|
|
|
2008-07-16 17:02:54 +07:00
|
|
|
struct platform_device;
|
|
|
|
/* allocate contiguous memory chunk and fill in struct resource */
|
|
|
|
int platform_resource_setup_memory(struct platform_device *pdev,
|
|
|
|
char *name, unsigned long memsize);
|
|
|
|
|
2009-04-15 17:50:21 +07:00
|
|
|
void plat_early_device_setup(void);
|
|
|
|
|
2012-01-13 14:27:38 +07:00
|
|
|
#endif /* __ASM_SH_DEVICE_H */
|