repo.or.cz
/
drm
/
drm-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
printf: Remove unused 'bprintf'
[drm/drm-misc.git]
/
include
/
linux
/
build-salt.h
blob
bb007bd05e7a81a62947f0f141e89610088bea20
1
#ifndef __BUILD_SALT_H
2
#define __BUILD_SALT_H
3
4
#include <linux/elfnote.h>
5
6
#define LINUX_ELFNOTE_BUILD_SALT 0x100
7
8
#ifdef __ASSEMBLER__
9
10
#define BUILD_SALT \
11
ELFNOTE(Linux, LINUX_ELFNOTE_BUILD_SALT, .asciz CONFIG_BUILD_SALT)
12
13
#else
14
15
#define BUILD_SALT \
16
ELFNOTE32(
"Linux"
, LINUX_ELFNOTE_BUILD_SALT, CONFIG_BUILD_SALT)
17
18
#endif
19
20
#endif
/* __BUILD_SALT_H */