uboot/arch/mips/mach-au1x00/au1x00_ide.c
<<
>>
Prefs
   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 */
  12void ide_input_swap_data(int dev, ulong *sect_buf, int words)
  13{
  14        ide_input_data(dev, sect_buf, words);
  15}
  16