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
Kirill Smelkov
linux
Commits
13d77434
Commit
13d77434
authored
Feb 26, 2003
by
Art Haas
Committed by
Linus Torvalds
Feb 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Fix initializers on drivers/ide/pci/trident.h
parent
f05ed067
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
19 deletions
+14
-19
drivers/ide/pci/triflex.h
drivers/ide/pci/triflex.h
+14
-19
No files found.
drivers/ide/pci/triflex.h
View file @
13d77434
...
@@ -18,31 +18,26 @@ static int triflex_get_info(char *, char **, off_t, int);
...
@@ -18,31 +18,26 @@ static int triflex_get_info(char *, char **, off_t, int);
static
ide_pci_device_t
triflex_devices
[]
__devinitdata
=
{
static
ide_pci_device_t
triflex_devices
[]
__devinitdata
=
{
{
{
.
vendor
PCI_VENDOR_ID_COMPAQ
,
.
vendor
=
PCI_VENDOR_ID_COMPAQ
,
.
device
PCI_DEVICE_ID_COMPAQ_TRIFLEX_IDE
,
.
device
=
PCI_DEVICE_ID_COMPAQ_TRIFLEX_IDE
,
.
name
"TRIFLEX"
,
.
name
=
"TRIFLEX"
,
.
init_chipset
init_chipset_triflex
,
.
init_chipset
=
init_chipset_triflex
,
.
init_iops
NULL
,
.
init_iops
=
NULL
,
.
init_hwif
init_hwif_triflex
,
.
init_hwif
=
init_hwif_triflex
,
.
channels
2
,
.
channels
=
2
,
.
autodma
AUTODMA
,
.
autodma
=
AUTODMA
,
.
enablebits
{{
0x80
,
0x01
,
0x01
},
{
0x80
,
0x02
,
0x02
}},
.
enablebits
=
{{
0x80
,
0x01
,
0x01
},
{
0x80
,
0x02
,
0x02
}},
.
bootable
ON_BOARD
,
.
bootable
=
ON_BOARD
,
.
extra
0
,
},{
},{
.
vendor
0
,
.
bootable
=
EOL
,
.
device
0
,
.
channels
0
,
.
bootable
EOL
,
}
}
};
};
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
static
ide_pci_host_proc_t
triflex_proc
__initdata
=
{
static
ide_pci_host_proc_t
triflex_proc
__initdata
=
{
name:
"triflex"
,
.
name
=
"triflex"
,
set:
1
,
.
set
=
1
,
get_info:
triflex_get_info
,
.
get_info
=
triflex_get_info
,
parent:
NULL
,
};
};
#endif
#endif
...
...
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