smp: build fixes for CONFIG_SMP=y
* bitmap.h: declare an explicit return type for bits_fill(). * arch_smp.c: update include clock.h to kernel/clock.h Change-Id: Idea373fa4eaa53f8ce4ac4fc3ad56f9f1ca86bc7
This commit is contained in:
parent
d37082b292
commit
4890bd9dce
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
#if defined(CONFIG_SMP) && defined(__GNUC__)
|
#if defined(CONFIG_SMP) && defined(__GNUC__)
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
static inline bits_fill(bitchunk_t * chunks, unsigned bits)
|
static inline void bits_fill(bitchunk_t * chunks, unsigned bits)
|
||||||
{
|
{
|
||||||
unsigned c, cnt;
|
unsigned c, cnt;
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include "kernel/smp.h"
|
#include "kernel/smp.h"
|
||||||
#include "apic.h"
|
#include "apic.h"
|
||||||
#include "acpi.h"
|
#include "acpi.h"
|
||||||
#include "clock.h"
|
#include "kernel/clock.h"
|
||||||
|
|
||||||
#include "glo.h"
|
#include "glo.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue