Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 static struct resource iop32x_gpio_res[] = {
0003     DEFINE_RES_MEM((IOP3XX_PERIPHERAL_PHYS_BASE + 0x07c4), 0x10),
0004 };
0005 
0006 static inline void register_iop32x_gpio(void)
0007 {
0008     platform_device_register_simple("gpio-iop", 0,
0009                     iop32x_gpio_res,
0010                     ARRAY_SIZE(iop32x_gpio_res));
0011 }