23 lines
548 B
C
23 lines
548 B
C
/*
|
|
* Copyright Codito Technologies (www.codito.com)
|
|
*
|
|
* include/asm-arc/uboot-arc.h
|
|
*
|
|
* Copyright (C)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* Authors : Sandeep Patil (sandeep.patil@codito.com)
|
|
* Pradeep Sawlani (pradeep.sawlani@codito.com)
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _U_BOOT_ARC_H_
|
|
#define _U_BOOT_ARC_H_ 1
|
|
int cpu_init(void);
|
|
int cleanup_before_linux(void);
|
|
#endif /* _U_BOOT_ARC_H_ */
|