soc/intel/common: disable paging if PAGING_IN_CACHE_AS_RAM enabled
[coreboot.git] / util / cbfstool / option.h
blob9a25f5ac53d5c1eda8b813198213397826f2ddb7
1 /*
2 * option.h, unsigned OPTION type
4 * Copyright (C) 2015 Google, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #ifndef OPTION_H_
17 #define OPTION_H_
19 struct unsigned_option {
20 bool val_known;
21 /** It is an error to read this field unless val_known is set. */
22 unsigned val;
25 #endif