Commit a6678b2a authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau: rename parsed_dcb_gpio to dcb_gpio_table

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent b42861f4
...@@ -5037,7 +5037,7 @@ read_dcb_i2c_entry(struct drm_device *dev, int dcb_version, uint8_t *i2ctable, i ...@@ -5037,7 +5037,7 @@ read_dcb_i2c_entry(struct drm_device *dev, int dcb_version, uint8_t *i2ctable, i
static struct dcb_gpio_entry * static struct dcb_gpio_entry *
new_gpio_entry(struct nvbios *bios) new_gpio_entry(struct nvbios *bios)
{ {
struct parsed_dcb_gpio *gpio = &bios->bdcb.gpio; struct dcb_gpio_table *gpio = &bios->bdcb.gpio;
return &gpio->entry[gpio->entries++]; return &gpio->entry[gpio->entries++];
} }
......
...@@ -94,7 +94,7 @@ struct dcb_gpio_entry { ...@@ -94,7 +94,7 @@ struct dcb_gpio_entry {
bool invert; bool invert;
}; };
struct parsed_dcb_gpio { struct dcb_gpio_table {
int entries; int entries;
struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES]; struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES];
}; };
...@@ -120,7 +120,7 @@ struct bios_parsed_dcb { ...@@ -120,7 +120,7 @@ struct bios_parsed_dcb {
uint8_t i2c_default_indices; uint8_t i2c_default_indices;
uint16_t gpio_table_ptr; uint16_t gpio_table_ptr;
struct parsed_dcb_gpio gpio; struct dcb_gpio_table gpio;
uint16_t connector_table_ptr; uint16_t connector_table_ptr;
struct dcb_connector_table connector; struct dcb_connector_table connector;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment