Commit 79f5943a authored by Sergej Benilov's avatar Sergej Benilov Committed by David S. Miller

sis900: correct a few typos

Correct a few typos in comments and debug text.
Signed-off-by: default avatarSergej Benilov <sergej.benilov@googlemail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6e3d1bbb
...@@ -262,7 +262,7 @@ static int sis900_get_mac_addr(struct pci_dev *pci_dev, ...@@ -262,7 +262,7 @@ static int sis900_get_mac_addr(struct pci_dev *pci_dev,
/* check to see if we have sane EEPROM */ /* check to see if we have sane EEPROM */
signature = (u16) read_eeprom(ioaddr, EEPROMSignature); signature = (u16) read_eeprom(ioaddr, EEPROMSignature);
if (signature == 0xffff || signature == 0x0000) { if (signature == 0xffff || signature == 0x0000) {
printk (KERN_WARNING "%s: Error EERPOM read %x\n", printk (KERN_WARNING "%s: Error EEPROM read %x\n",
pci_name(pci_dev), signature); pci_name(pci_dev), signature);
return 0; return 0;
} }
...@@ -359,9 +359,9 @@ static int sis635_get_mac_addr(struct pci_dev *pci_dev, ...@@ -359,9 +359,9 @@ static int sis635_get_mac_addr(struct pci_dev *pci_dev,
* *
* SiS962 or SiS963 model, use EEPROM to store MAC address. And EEPROM * SiS962 or SiS963 model, use EEPROM to store MAC address. And EEPROM
* is shared by * is shared by
* LAN and 1394. When access EEPROM, send EEREQ signal to hardware first * LAN and 1394. When accessing EEPROM, send EEREQ signal to hardware first
* and wait for EEGNT. If EEGNT is ON, EEPROM is permitted to be accessed * and wait for EEGNT. If EEGNT is ON, EEPROM is permitted to be accessed
* by LAN, otherwise is not. After MAC address is read from EEPROM, send * by LAN, otherwise it is not. After MAC address is read from EEPROM, send
* EEDONE signal to refuse EEPROM access by LAN. * EEDONE signal to refuse EEPROM access by LAN.
* The EEPROM map of SiS962 or SiS963 is different to SiS900. * The EEPROM map of SiS962 or SiS963 is different to SiS900.
* The signature field in SiS962 or SiS963 spec is meaningless. * The signature field in SiS962 or SiS963 spec is meaningless.
......
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