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
b082d0d2
Commit
b082d0d2
authored
Aug 15, 2003
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AGPGART] Kill off agp_try_unsupported for ATI.
parent
fc76b6f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
14 deletions
+3
-14
drivers/char/agp/ati-agp.c
drivers/char/agp/ati-agp.c
+3
-14
No files found.
drivers/char/agp/ati-agp.c
View file @
b082d0d2
...
...
@@ -9,9 +9,6 @@
#include <linux/agp_backend.h>
#include "agp.h"
static
int
agp_try_unsupported
__initdata
=
0
;
static
struct
aper_size_info_lvl2
ati_generic_sizes
[
7
]
=
{
{
2048
,
524288
,
0x0000000c
},
...
...
@@ -470,16 +467,9 @@ static int __init agp_ati_probe(struct pci_dev *pdev,
goto
found
;
}
if
(
!
agp_try_unsupported
)
{
printk
(
KERN_ERR
PFX
"Unsupported Ati chipset (device id: %04x),"
" you might want to try agp_try_unsupported=1.
\n
"
,
pdev
->
device
);
return
-
ENODEV
;
}
printk
(
KERN_WARNING
PFX
"Trying generic Ati routines"
" for device id: %04x
\n
"
,
pdev
->
device
);
printk
(
KERN_ERR
PFX
"Unsupported Ati chipset (device id: %04x)
\n
"
,
pdev
->
device
);
return
-
ENODEV
;
found:
bridge
=
agp_alloc_bridge
();
...
...
@@ -546,7 +536,6 @@ static void __exit agp_ati_cleanup(void)
module_init
(
agp_ati_init
);
module_exit
(
agp_ati_cleanup
);
MODULE_PARM
(
agp_try_unsupported
,
"1i"
);
MODULE_AUTHOR
(
"Dave Jones <davej@codemonkey.org.uk>"
);
MODULE_LICENSE
(
"GPL and additional rights"
);
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