]> git.sur5r.net Git - u-boot/blob - arch/mips/cpu/mips32/au1x00/au1x00_ide.c
MIPS: handle mips64 ST0_KX bit in mips32 start.S
[u-boot] / arch / mips / cpu / mips32 / au1x00 / au1x00_ide.c
1 /*
2  * (C) Copyright 2000-2011
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <ide.h>
10
11 /* AU1X00 swaps data in big-endian mode, enforce little-endian function */
12 void ide_input_swap_data(int dev, ulong *sect_buf, int words)
13 {
14         ide_input_data(dev, sect_buf, words);
15 }