Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
a6678b2a
Commit
a6678b2a
authored
Feb 24, 2010
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau: rename parsed_dcb_gpio to dcb_gpio_table
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
b42861f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
drivers/gpu/drm/nouveau/nouveau_bios.c
drivers/gpu/drm/nouveau/nouveau_bios.c
+1
-1
drivers/gpu/drm/nouveau/nouveau_bios.h
drivers/gpu/drm/nouveau/nouveau_bios.h
+2
-2
No files found.
drivers/gpu/drm/nouveau/nouveau_bios.c
View file @
a6678b2a
...
...
@@ -5037,7 +5037,7 @@ read_dcb_i2c_entry(struct drm_device *dev, int dcb_version, uint8_t *i2ctable, i
static
struct
dcb_gpio_entry
*
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
++
];
}
...
...
drivers/gpu/drm/nouveau/nouveau_bios.h
View file @
a6678b2a
...
...
@@ -94,7 +94,7 @@ struct dcb_gpio_entry {
bool
invert
;
};
struct
parsed_dcb_gpio
{
struct
dcb_gpio_table
{
int
entries
;
struct
dcb_gpio_entry
entry
[
DCB_MAX_NUM_GPIO_ENTRIES
];
};
...
...
@@ -120,7 +120,7 @@ struct bios_parsed_dcb {
uint8_t
i2c_default_indices
;
uint16_t
gpio_table_ptr
;
struct
parsed_dcb_gpio
gpio
;
struct
dcb_gpio_table
gpio
;
uint16_t
connector_table_ptr
;
struct
dcb_connector_table
connector
;
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment