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:
Thomas Cort 2013-10-11 02:07:12 +00:00
parent d37082b292
commit 4890bd9dce
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
#if defined(CONFIG_SMP) && defined(__GNUC__)
#ifndef __ASSEMBLY__
static inline bits_fill(bitchunk_t * chunks, unsigned bits)
static inline void bits_fill(bitchunk_t * chunks, unsigned bits)
{
unsigned c, cnt;

View file

@ -22,7 +22,7 @@
#include "kernel/smp.h"
#include "apic.h"
#include "acpi.h"
#include "clock.h"
#include "kernel/clock.h"
#include "glo.h"