Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 82660
b: refs/heads/master
c: 0a0863a
h: refs/heads/master
v: v3
  • Loading branch information
Andreas Mohr authored and David S. Miller committed Feb 3, 2008
1 parent ea26405 commit a5a4dba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b4ea895dd855a1dba72d171f4ef80a2a57b50f04
refs/heads/master: 0a0863af0d41e2eea1391e4e5f375a47c5019ab7
14 changes: 7 additions & 7 deletions trunk/drivers/net/e100.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
* enabled. 82557 pads with 7Eh, while the later controllers pad
* with 00h.
*
* IV. Recieve
* IV. Receive
*
* The Receive Frame Area (RFA) comprises a ring of Receive Frame
* Descriptors (RFD) + data buffer, thus forming the simplified mode
Expand All @@ -120,7 +120,7 @@
* and Rx indication and re-allocation happen in the same context,
* therefore no locking is required. A software-generated interrupt
* is generated from the watchdog to recover from a failed allocation
* senario where all Rx resources have been indicated and none re-
* scenario where all Rx resources have been indicated and none re-
* placed.
*
* V. Miscellaneous
Expand Down Expand Up @@ -954,7 +954,7 @@ static void e100_get_defaults(struct nic *nic)
/* Quadwords to DMA into FIFO before starting frame transmit */
nic->tx_threshold = 0xE0;

/* no interrupt for every tx completion, delay = 256us if not 557*/
/* no interrupt for every tx completion, delay = 256us if not 557 */
nic->tx_command = cpu_to_le16(cb_tx | cb_tx_sf |
((nic->mac >= mac_82558_D101_A4) ? cb_cid : cb_i));

Expand Down Expand Up @@ -1497,7 +1497,7 @@ static void e100_update_stats(struct nic *nic)
&s->complete;

/* Device's stats reporting may take several microseconds to
* complete, so where always waiting for results of the
* complete, so we're always waiting for results of the
* previous command. */

if(*complete == cpu_to_le32(cuc_dump_reset_complete)) {
Expand Down Expand Up @@ -2858,17 +2858,17 @@ static void e100_shutdown(struct pci_dev *pdev)
/**
* e100_io_error_detected - called when PCI error is detected.
* @pdev: Pointer to PCI device
* @state: The current pci conneection state
* @state: The current pci connection state
*/
static pci_ers_result_t e100_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
{
struct net_device *netdev = pci_get_drvdata(pdev);
struct nic *nic = netdev_priv(netdev);

/* Similar to calling e100_down(), but avoids adpater I/O. */
/* Similar to calling e100_down(), but avoids adapter I/O. */
netdev->stop(netdev);

/* Detach; put netif into state similar to hotplug unplug. */
/* Detach; put netif into a state similar to hotplug unplug. */
napi_enable(&nic->napi);
netif_device_detach(netdev);
pci_disable_device(pdev);
Expand Down

0 comments on commit a5a4dba

Please sign in to comment.