https://github.com/torvalds/linux
Raw File
Tip revision: b1940cd21c0f4abdce101253e860feff547291b0 authored by Linus Torvalds on 06 January 2015, 01:05:20 UTC
Linux 3.19-rc3
Tip revision: b1940cd
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