repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/dell: Add Latitude E5520 (Sandy Bridge)
[coreboot.git]
/
util
/
cbfstool
/
option.h
blob
c49bf576686ca03aa1524cd33add2d3d17096bbe
1
/* unsigned OPTION type */
2
/* SPDX-License-Identifier: GPL-2.0-only */
3
4
#ifndef OPTION_H_
5
#define OPTION_H_
6
7
struct
unsigned_option
{
8
bool
val_known
;
9
/** It is an error to read this field unless val_known is set. */
10
unsigned
val
;
11
};
12
13
#endif