aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_bios.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bios.h')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_bios.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.h b/drivers/gpu/drm/nouveau/nouveau_bios.h
index fd94bd6dc26..73e6499e79d 100644
--- a/drivers/gpu/drm/nouveau/nouveau_bios.h
+++ b/drivers/gpu/drm/nouveau/nouveau_bios.h
@@ -94,7 +94,7 @@ struct dcb_gpio_entry {
94 bool invert; 94 bool invert;
95}; 95};
96 96
97struct parsed_dcb_gpio { 97struct dcb_gpio_table {
98 int entries; 98 int entries;
99 struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES]; 99 struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES];
100}; 100};
@@ -120,7 +120,7 @@ struct bios_parsed_dcb {
120 uint8_t i2c_default_indices; 120 uint8_t i2c_default_indices;
121 121
122 uint16_t gpio_table_ptr; 122 uint16_t gpio_table_ptr;
123 struct parsed_dcb_gpio gpio; 123 struct dcb_gpio_table gpio;
124 uint16_t connector_table_ptr; 124 uint16_t connector_table_ptr;
125 struct dcb_connector_table connector; 125 struct dcb_connector_table connector;
126}; 126};