Home | History | Annotate | Download | only in mach-au1x00
      1 // SPDX-License-Identifier: GPL-2.0+
      2 /*
      3  * (C) Copyright 2000-2011
      4  * Wolfgang Denk, DENX Software Engineering, wd (at) 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 }
     15