mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
21 lines
522 B
C
21 lines
522 B
C
|
/*
|
||
|
* This file is subject to the terms and conditions of the GNU General Public
|
||
|
* License. See the file "COPYING" in the main directory of this archive
|
||
|
* for more details.
|
||
|
*
|
||
|
* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
|
||
|
*/
|
||
|
#include <linux/init.h>
|
||
|
|
||
|
int coherentio; /* 0 => no DMA cache coherency (may be set by user) */
|
||
|
int hw_coherentio; /* 0 => no HW DMA cache coherency (reflects real HW) */
|
||
|
|
||
|
const char *get_system_type(void)
|
||
|
{
|
||
|
return "MIPS SEAD3";
|
||
|
}
|
||
|
|
||
|
void __init plat_mem_setup(void)
|
||
|
{
|
||
|
}
|