Hi,
I didn't see any maintainer listed for agpgart, should this be
[email protected]?
Anyway, just a cosmetic fix that always bugged me.
The AMD 760 MP chipset was identified twice as AMD
like so:
Linux agpgart interface v0.99 (c) Jeff Hartmann
agpgart: Maximum main memory to use for agp memory: 816M
agpgart: Detected AMD AMD 760MP chipset
^^^^^^^^^^
This tiny patch will fix it so it appears as:
Linux agpgart interface v0.99 (c) Jeff Hartmann
agpgart: Maximum main memory to use for agp memory: 816M
agpgart: Detected AMD 760MP chipset
Patch is against 2.4.18.
Thanks,
Steven Spence
--- agpgart_be_original.c Tue Apr 2 03:38:39 2002
+++ agpgart_be.c Tue Apr 2 03:39:08 2002
@@ -3597,7 +3597,7 @@
PCI_VENDOR_ID_AMD,
AMD_IRONGATE,
"AMD",
- "AMD 760MP",
+ "760MP",
amd_irongate_setup },
{ PCI_DEVICE_ID_AMD_761_0,
PCI_VENDOR_ID_AMD,
@@ -3609,7 +3609,7 @@
PCI_VENDOR_ID_AMD,
AMD_762,
"AMD",
- "AMD 760MP",
+ "760MP",
amd_irongate_setup },
{ 0,
PCI_VENDOR_ID_AMD,
On Tue, 2 Apr 2002 [email protected] wrote:
> Hi,
>
> I didn't see any maintainer listed for agpgart, should this be
> [email protected]?
In theory yes, but as far as I know he is not actively maintaining agpgart
anymore.
There is no active maintainer.
>
> Anyway, just a cosmetic fix that always bugged me.
> The AMD 760 MP chipset was identified twice as AMD
> like so:
>
> Linux agpgart interface v0.99 (c) Jeff Hartmann
> agpgart: Maximum main memory to use for agp memory: 816M
> agpgart: Detected AMD AMD 760MP chipset
> ^^^^^^^^^^
>
> This tiny patch will fix it so it appears as:
>
> Linux agpgart interface v0.99 (c) Jeff Hartmann
> agpgart: Maximum main memory to use for agp memory: 816M
> agpgart: Detected AMD 760MP chipset
>
> Patch is against 2.4.18.
Thanks for the patch, applied.