2013-12-17 04:07:36 +08:00
|
|
|
/*
|
|
|
|
* intel_mid_weak_decls.h: Weak declarations of intel-mid.c
|
|
|
|
*
|
|
|
|
* (C) Copyright 2013 Intel Corporation
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; version 2
|
|
|
|
* of the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* __attribute__((weak)) makes these declarations overridable */
|
2013-12-17 04:07:37 +08:00
|
|
|
/* For every CPU addition a new get_<cpuname>_ops interface needs
|
|
|
|
* to be added.
|
|
|
|
*/
|
2014-01-23 01:34:15 +08:00
|
|
|
extern void *get_penwell_ops(void) __attribute__((weak));
|
|
|
|
extern void *get_cloverview_ops(void) __attribute__((weak));
|
2014-01-23 01:35:25 +08:00
|
|
|
extern void *get_tangier_ops(void) __attribute__((weak));
|