diff options
author | Giuseppe Pagano <giuseppe.pagano@seco.com> | 2013-11-28 12:32:48 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-12-17 18:12:14 +0100 |
commit | 164d98466103a46b7c881149e92ec2a28a6375be (patch) | |
tree | 138acc7e8cc9ce11bfb28f4d423bd63ad663bb24 /arch/arm/include | |
parent | b47abc36aaa4695ed50226ca1f3bd8f0b58bdaa6 (diff) | |
download | u-boot-imx-164d98466103a46b7c881149e92ec2a28a6375be.zip u-boot-imx-164d98466103a46b7c881149e92ec2a28a6375be.tar.gz u-boot-imx-164d98466103a46b7c881149e92ec2a28a6375be.tar.bz2 |
nitrogen6x: Move setup_sata to common part
Move setup_sata function definition from platform file nitrogen6x.c
to arch/arm/imx-common/sata.c to avoid code duplication.
Signed-off-by: Giuseppe Pagano <giuseppe.pagano@seco.com>
CC: Stefano Babic <sbabic@denx.de>
CC: Fabio Estevam <fabio.estevam@freescale.com>
CC: Eric Nelson <eric.nelson@boundarydevices.com>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/imx-common/sata.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/include/asm/imx-common/sata.h b/arch/arm/include/asm/imx-common/sata.h new file mode 100644 index 0000000..6b864cb --- /dev/null +++ b/arch/arm/include/asm/imx-common/sata.h @@ -0,0 +1,16 @@ +/* + * Copyright 2011 Freescale Semiconductor, Inc. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __IMX_SATA_H_ +#define __IMX_SATA_H_ + +/* + * SATA setup for i.mx6 quad based platform + */ + +int setup_sata(void); + +#endif |