sb/intel/i82801{i,j}x/chip.h: Use boolean where appropriate
Change-Id: I867451ae3d6d37033c9e0e57a4d7fd4a06dedbef Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77738 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nicholas Chin <nic.c3.14@gmail.com>
This commit is contained in:
parent
550f55e4f6
commit
a7f55af995
|
@ -56,12 +56,12 @@ struct southbridge_intel_i82801ix_config {
|
|||
|
||||
/* IDE configuration */
|
||||
uint8_t sata_port_map : 6;
|
||||
unsigned int sata_clock_request : 1;
|
||||
unsigned int sata_traffic_monitor : 1;
|
||||
bool sata_clock_request;
|
||||
bool sata_traffic_monitor;
|
||||
|
||||
unsigned int c4onc3_enable:1;
|
||||
unsigned int c5_enable : 1;
|
||||
unsigned int c6_enable : 1;
|
||||
bool c4onc3_enable;
|
||||
bool c5_enable;
|
||||
bool c6_enable;
|
||||
|
||||
unsigned int throttle_duty : 3;
|
||||
|
||||
|
|
|
@ -142,14 +142,14 @@ bool southbridge_support_c5(void)
|
|||
{
|
||||
struct device *lpc_dev = __pci_0_1f_0;
|
||||
struct southbridge_intel_i82801ix_config *config = lpc_dev->chip_info;
|
||||
return config->c5_enable == 1;
|
||||
return config->c5_enable;
|
||||
}
|
||||
|
||||
bool southbridge_support_c6(void)
|
||||
{
|
||||
struct device *lpc_dev = __pci_0_1f_0;
|
||||
struct southbridge_intel_i82801ix_config *config = lpc_dev->chip_info;
|
||||
return config->c6_enable == 1;
|
||||
return config->c6_enable;
|
||||
}
|
||||
|
||||
static void i82801ix_power_options(struct device *dev)
|
||||
|
|
|
@ -43,11 +43,11 @@ struct southbridge_intel_i82801jx_config {
|
|||
|
||||
/* IDE configuration */
|
||||
uint8_t sata_port_map : 6;
|
||||
unsigned int sata_clock_request : 1;
|
||||
bool sata_clock_request;
|
||||
|
||||
unsigned int c4onc3_enable:1;
|
||||
unsigned int c5_enable : 1;
|
||||
unsigned int c6_enable : 1;
|
||||
bool c4onc3_enable;
|
||||
bool c5_enable;
|
||||
bool c6_enable;
|
||||
|
||||
unsigned int throttle_duty : 3;
|
||||
|
||||
|
|
|
@ -144,14 +144,14 @@ bool southbridge_support_c5(void)
|
|||
{
|
||||
struct device *lpc_dev = __pci_0_1f_0;
|
||||
struct southbridge_intel_i82801jx_config *config = lpc_dev->chip_info;
|
||||
return config->c5_enable == 1;
|
||||
return config->c5_enable;
|
||||
}
|
||||
|
||||
bool southbridge_support_c6(void)
|
||||
{
|
||||
struct device *lpc_dev = __pci_0_1f_0;
|
||||
struct southbridge_intel_i82801jx_config *config = lpc_dev->chip_info;
|
||||
return config->c6_enable == 1;
|
||||
return config->c6_enable;
|
||||
}
|
||||
|
||||
static void i82801jx_power_options(struct device *dev)
|
||||
|
|
Loading…
Reference in New Issue