mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Ported from Ron's code in v3. Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4919 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
13 lines
210 B
C
13 lines
210 B
C
#ifndef AMDK8_H
|
|
|
|
#define AMDK8_H
|
|
|
|
#if CONFIG_K8_REV_F_SUPPORT == 1
|
|
#include "amdk8_f.h"
|
|
#else
|
|
#include "amdk8_pre_f.h"
|
|
#endif
|
|
|
|
void showallroutes(int level, device_t dev);
|
|
|
|
#endif /* AMDK8_H */
|