mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
15 lines
350 B
C
15 lines
350 B
C
/*
|
|
* (C) Copyright 2000-2011
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <ide.h>
|
|
|
|
/* AU1X00 swaps data in big-endian mode, enforce little-endian function */
|
|
void ide_input_swap_data(int dev, ulong *sect_buf, int words)
|
|
{
|
|
ide_input_data(dev, sect_buf, words);
|
|
}
|