aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_bios.h
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2010-02-23 18:46:27 -0500
committerBen Skeggs <bskeggs@redhat.com>2010-02-25 00:09:17 -0500
commita6678b2ace023912000119a14eeb39a56050bc7c (patch)
tree54f0e9cf65de5775acbdf7ec747f20913adc1a03 /drivers/gpu/drm/nouveau/nouveau_bios.h
parentb42861f40f5ea3261d9fa1d5533496bf1fc812cf (diff)
drm/nouveau: rename parsed_dcb_gpio to dcb_gpio_table
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
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};