blob: be763842c0bde75b90c4e93035a4f6405725be42 [file] [log] [blame]
Wolfgang Denk16a354f2010-10-26 00:08:35 +02001/*
2 * Copied from Linux:
3 * commit 37487a56523d402e25650da16c337acf4cecd13d
4 * Author: Christoph Lameter <clameter@sgi.com>
5 */
6#ifndef __LINUX_KBUILD_H
7#define __LINUX_KBUILD_H
8
9#define DEFINE(sym, val) \
10 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
11
12#define BLANK() asm volatile("\n->" : : )
13
14#define OFFSET(sym, str, mem) \
15 DEFINE(sym, offsetof(struct str, mem))
16
17#define COMMENT(x) \
18 asm volatile("\n->#" x)
19
20#endif