diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/ks8851.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/ks8851.c')
-rw-r--r-- | drivers/net/ks8851.c | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/drivers/net/ks8851.c b/drivers/net/ks8851.c index 51919fcd50c2..bcd9ba68c9f2 100644 --- a/drivers/net/ks8851.c +++ b/drivers/net/ks8851.c | |||
@@ -141,7 +141,7 @@ static int msg_enable; | |||
141 | * | 141 | * |
142 | * All these calls issue SPI transactions to access the chip's registers. They | 142 | * All these calls issue SPI transactions to access the chip's registers. They |
143 | * all require that the necessary lock is held to prevent accesses when the | 143 | * all require that the necessary lock is held to prevent accesses when the |
144 | * chip is busy transfering packet data (RX/TX FIFO accesses). | 144 | * chip is busy transferring packet data (RX/TX FIFO accesses). |
145 | */ | 145 | */ |
146 | 146 | ||
147 | /** | 147 | /** |
@@ -483,7 +483,7 @@ static void ks8851_rx_pkts(struct ks8851_net *ks) | |||
483 | * | 483 | * |
484 | * This form of operation would require us to hold the SPI bus' | 484 | * This form of operation would require us to hold the SPI bus' |
485 | * chipselect low during the entie transaction to avoid any | 485 | * chipselect low during the entie transaction to avoid any |
486 | * reset to the data stream comming from the chip. | 486 | * reset to the data stream coming from the chip. |
487 | */ | 487 | */ |
488 | 488 | ||
489 | for (; rxfc != 0; rxfc--) { | 489 | for (; rxfc != 0; rxfc--) { |
@@ -634,7 +634,7 @@ static void ks8851_irq_work(struct work_struct *work) | |||
634 | 634 | ||
635 | /** | 635 | /** |
636 | * calc_txlen - calculate size of message to send packet | 636 | * calc_txlen - calculate size of message to send packet |
637 | * @len: Lenght of data | 637 | * @len: Length of data |
638 | * | 638 | * |
639 | * Returns the size of the TXFIFO message needed to send | 639 | * Returns the size of the TXFIFO message needed to send |
640 | * this packet. | 640 | * this packet. |
@@ -1472,7 +1472,7 @@ static int ks8851_phy_reg(int reg) | |||
1472 | * @reg: The register to read. | 1472 | * @reg: The register to read. |
1473 | * | 1473 | * |
1474 | * This call reads data from the PHY register specified in @reg. Since the | 1474 | * This call reads data from the PHY register specified in @reg. Since the |
1475 | * device does not support all the MII registers, the non-existant values | 1475 | * device does not support all the MII registers, the non-existent values |
1476 | * are always returned as zero. | 1476 | * are always returned as zero. |
1477 | * | 1477 | * |
1478 | * We return zero for unsupported registers as the MII code does not check | 1478 | * We return zero for unsupported registers as the MII code does not check |
@@ -1545,6 +1545,37 @@ static int ks8851_read_selftest(struct ks8851_net *ks) | |||
1545 | 1545 | ||
1546 | /* driver bus management functions */ | 1546 | /* driver bus management functions */ |
1547 | 1547 | ||
1548 | #ifdef CONFIG_PM | ||
1549 | static int ks8851_suspend(struct spi_device *spi, pm_message_t state) | ||
1550 | { | ||
1551 | struct ks8851_net *ks = dev_get_drvdata(&spi->dev); | ||
1552 | struct net_device *dev = ks->netdev; | ||
1553 | |||
1554 | if (netif_running(dev)) { | ||
1555 | netif_device_detach(dev); | ||
1556 | ks8851_net_stop(dev); | ||
1557 | } | ||
1558 | |||
1559 | return 0; | ||
1560 | } | ||
1561 | |||
1562 | static int ks8851_resume(struct spi_device *spi) | ||
1563 | { | ||
1564 | struct ks8851_net *ks = dev_get_drvdata(&spi->dev); | ||
1565 | struct net_device *dev = ks->netdev; | ||
1566 | |||
1567 | if (netif_running(dev)) { | ||
1568 | ks8851_net_open(dev); | ||
1569 | netif_device_attach(dev); | ||
1570 | } | ||
1571 | |||
1572 | return 0; | ||
1573 | } | ||
1574 | #else | ||
1575 | #define ks8851_suspend NULL | ||
1576 | #define ks8851_resume NULL | ||
1577 | #endif | ||
1578 | |||
1548 | static int __devinit ks8851_probe(struct spi_device *spi) | 1579 | static int __devinit ks8851_probe(struct spi_device *spi) |
1549 | { | 1580 | { |
1550 | struct net_device *ndev; | 1581 | struct net_device *ndev; |
@@ -1679,6 +1710,8 @@ static struct spi_driver ks8851_driver = { | |||
1679 | }, | 1710 | }, |
1680 | .probe = ks8851_probe, | 1711 | .probe = ks8851_probe, |
1681 | .remove = __devexit_p(ks8851_remove), | 1712 | .remove = __devexit_p(ks8851_remove), |
1713 | .suspend = ks8851_suspend, | ||
1714 | .resume = ks8851_resume, | ||
1682 | }; | 1715 | }; |
1683 | 1716 | ||
1684 | static int __init ks8851_init(void) | 1717 | static int __init ks8851_init(void) |