blob: f23ec73b944b8cb2d0cb6b53e1de50182dcc4d69 [file] [log] [blame]
Anton Vorontsovaeec56e2010-10-27 15:33:15 -07001/*
2 * Basic memory-mapped GPIO controllers.
3 *
4 * Copyright 2008 MontaVista Software, Inc.
5 * Copyright 2008,2010 Anton Vorontsov <cbouatmailru@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 */
12
13#ifndef __BASIC_MMIO_GPIO_H
14#define __BASIC_MMIO_GPIO_H
15
16struct bgpio_pdata {
17 int base;
Jamie Iles924e7a92011-05-20 00:40:15 -060018 int ngpio;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070019};
20
21#endif /* __BASIC_MMIO_GPIO_H */