]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/mips/mach-au1x00/au1x00_ide.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / mips / mach-au1x00 / au1x00_ide.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2000-2011
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 */
6
7 #include <common.h>
8 #include <ide.h>
9
10 /* AU1X00 swaps data in big-endian mode, enforce little-endian function */
11 void ide_input_swap_data(int dev, ulong *sect_buf, int words)
12 {
13 ide_input_data(dev, sect_buf, words);
14 }