https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 1166b4bd8f8440c706b7b8efee416e8e6830acf3 authored by Jason Self on 27 April 2016, 09:13:38 UTC
Linux-libre 3.12.59-gnu
Tip revision: 1166b4b
tcm.h
/*
 * Copyright (C) 2008-2009 ST-Ericsson AB
 * License terms: GNU General Public License (GPL) version 2
 * TCM memory handling for ARM systems
 *
 * Author: Linus Walleij <linus.walleij@stericsson.com>
 * Author: Rickard Andersson <rickard.andersson@stericsson.com>
 */

#ifdef CONFIG_HAVE_TCM
void __init tcm_init(void);
#else
/* No TCM support, just blank inlines to be optimized out */
inline void tcm_init(void)
{
}
#endif
back to top