mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 14:23:00 +00:00
18 lines
266 B
C
18 lines
266 B
C
|
/*
|
||
|
* MSMC controller
|
||
|
*
|
||
|
* (C) Copyright 2014
|
||
|
* Texas Instruments Incorporated, <www.ti.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef _MSMC_H_
|
||
|
#define _MSMC_H_
|
||
|
|
||
|
#include <asm/arch/hardware.h>
|
||
|
|
||
|
void msmc_share_all_segments(int priv_id);
|
||
|
|
||
|
#endif
|