summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/linux/smp.h
blob: 4db0fee69befeb8d62613df53b00881ad3dd7387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Public domain. */

#ifndef _LINUX_SMP_H
#define _LINUX_SMP_H

/* sparc64 cpu.h needs time.h and siginfo.h (indirect via param.h) */
#include <sys/param.h>
#include <machine/cpu.h>

#define smp_processor_id()	(curcpu()->ci_cpuid)

#define get_cpu()		cpu_number()
#define put_cpu()

#endif