mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-18 09:13:06 +00:00
13 lines
196 B
C
13 lines
196 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
|
||
|
#ifndef _MPC8XX_GPIO_H_
|
||
|
#define _MPC8XX_GPIO_H_
|
||
|
|
||
|
struct mpc8xx_gpio_plat {
|
||
|
ulong addr;
|
||
|
unsigned long size;
|
||
|
uint ngpios;
|
||
|
};
|
||
|
|
||
|
#endif /* MPC8XX_GPIO_H_ */
|