diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:21 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:21 -0700 |
commit | 91a851e08ff6dd101fd5378c430674ab8cff1eea (patch) | |
tree | c4ae9ccf6afe82f0a41ebf02b8cae597eb46fbe6 /com32/gplinclude | |
parent | 6182fda1e6c5678b0ce0c5e1f5f745ecc520ac76 (diff) | |
download | syslinux-91a851e08ff6dd101fd5378c430674ab8cff1eea.tar.gz syslinux-91a851e08ff6dd101fd5378c430674ab8cff1eea.tar.xz syslinux-91a851e08ff6dd101fd5378c430674ab8cff1eea.zip |
Run Nindent on com32/gplinclude/dmi/dmi_base_board.h
Automatically reformat com32/gplinclude/dmi/dmi_base_board.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/gplinclude')
-rw-r--r-- | com32/gplinclude/dmi/dmi_base_board.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/com32/gplinclude/dmi/dmi_base_board.h b/com32/gplinclude/dmi/dmi_base_board.h index 5b92b848..9fe35440 100644 --- a/com32/gplinclude/dmi/dmi_base_board.h +++ b/com32/gplinclude/dmi/dmi_base_board.h @@ -30,24 +30,24 @@ extern const char *base_board_features_strings[]; /* this struct have BASE_BOARD_NB_ELEMENTS */ /* each bool is associated to the relevant message above */ typedef struct { -bool hosting; -bool board_needs_daughter; -bool removable; -bool replaceable; -bool hot_swappable; -} __attribute__((__packed__)) s_base_board_features; + bool hosting; + bool board_needs_daughter; + bool removable; + bool replaceable; + bool hot_swappable; +} __attribute__ ((__packed__)) s_base_board_features; typedef struct { -char manufacturer[BASE_BOARD_MANUFACTURER_SIZE]; -char product_name[BASE_BOARD_PRODUCT_NAME_SIZE]; -char version[BASE_BOARD_VERSION_SIZE]; -char serial[BASE_BOARD_SERIAL_SIZE]; -char asset_tag[BASE_BOARD_ASSET_TAG_SIZE]; -char location[BASE_BOARD_LOCATION_SIZE]; -char type[BASE_BOARD_TYPE_SIZE]; -s_base_board_features features; + char manufacturer[BASE_BOARD_MANUFACTURER_SIZE]; + char product_name[BASE_BOARD_PRODUCT_NAME_SIZE]; + char version[BASE_BOARD_VERSION_SIZE]; + char serial[BASE_BOARD_SERIAL_SIZE]; + char asset_tag[BASE_BOARD_ASSET_TAG_SIZE]; + char location[BASE_BOARD_LOCATION_SIZE]; + char type[BASE_BOARD_TYPE_SIZE]; + s_base_board_features features; /* The filled field have to be set to true when the dmitable implement that item */ -bool filled; + bool filled; } s_base_board; #endif |