1
0
Fork 0

thunderbolt: Make enum tb_drom_entry_type unsigned

Force enum tb_drom_entry_type to unsigned to fix the following error:

drivers/thunderbolt/eeprom.c:202:39: error: dubious one-bit signed bitfield

Signed-off-by: Andreas Noever <andreas.noever@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Andreas Noever 2014-06-20 21:42:24 +02:00 committed by Greg Kroah-Hartman
parent 7f2d5f7bc5
commit e7120778a4
1 changed files with 2 additions and 1 deletions

View File

@ -191,7 +191,8 @@ struct tb_drom_header {
} __packed;
enum tb_drom_entry_type {
TB_DROM_ENTRY_GENERIC,
/* force unsigned to prevent "one-bit signed bitfield" warning */
TB_DROM_ENTRY_GENERIC = 0U,
TB_DROM_ENTRY_PORT,
};