mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 11:23:16 +01:00
25 lines
333 B
C
25 lines
333 B
C
/*
|
|
* Cpu specific features
|
|
* defined upon the base architecture.
|
|
*
|
|
* Copyright (C) 2010 B Labs Ltd.
|
|
* Written by Bahadir Balban
|
|
*/
|
|
|
|
#ifndef __V5_CPU_H__
|
|
#define __V5_CPU_H__
|
|
|
|
#include INC_SUBARCH(mmu_ops.h)
|
|
|
|
static inline void cpu_startup(void)
|
|
{
|
|
|
|
}
|
|
|
|
static inline int smp_get_cpuid()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif /* __V5_CPU_H__ */
|