Commit bc0e1fc9 authored by Linas Vepstas's avatar Linas Vepstas Committed by Jeff Garzik

[PATCH] Janitor: drivers/net/pcnet32: fix incorrect comments

The comments concerning how the pcnet32 ethernet device driver selects
the MAC addr to use are incorrect. A recent patch (in the last 3 months)
changed how the code worked, but did not change the comments.

Side comment: the new behaviour is good; I've got a pcnet32 card which
powers up with garbage in the CSR's, and a good MAC addr in the PROM.
Signed-off-by: default avatarLinas Vepstas <linas@linas.org>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 8a91ed60
...@@ -1167,8 +1167,8 @@ pcnet32_probe1(unsigned long ioaddr, int shared, struct pci_dev *pdev) ...@@ -1167,8 +1167,8 @@ pcnet32_probe1(unsigned long ioaddr, int shared, struct pci_dev *pdev)
* station address PROM at the base address and programmed into the * station address PROM at the base address and programmed into the
* "Physical Address Registers" CSR12-14. * "Physical Address Registers" CSR12-14.
* As a precautionary measure, we read the PROM values and complain if * As a precautionary measure, we read the PROM values and complain if
* they disagree with the CSRs. Either way, we use the CSR values, and * they disagree with the CSRs. If they miscompare, and the PROM addr
* double check that they are valid. * is valid, then the PROM addr is used.
*/ */
for (i = 0; i < 3; i++) { for (i = 0; i < 3; i++) {
unsigned int val; unsigned int val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment