diff options
Diffstat (limited to 'src/soc/samsung/exynos5250/gpio.c')
-rw-r--r-- | src/soc/samsung/exynos5250/gpio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/samsung/exynos5250/gpio.c b/src/soc/samsung/exynos5250/gpio.c index 98c177d4d2..203aa03a42 100644 --- a/src/soc/samsung/exynos5250/gpio.c +++ b/src/soc/samsung/exynos5250/gpio.c @@ -17,12 +17,12 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <assert.h> #include <console/console.h> -#include <string.h> #include <delay.h> -#include <assert.h> -#include "gpio.h" -#include "cpu.h" +#include <soc/cpu.h> +#include <soc/gpio.h> +#include <string.h> #define CON_MASK(x) (0xf << ((x) << 2)) #define CON_SFR(x, v) ((v) << ((x) << 2)) |