Message ID | 20211208192449.146076-5-helgaas@kernel.org |
---|---|
State | New |
Headers | show |
Series | block: convert to generic power management | expand |
Maybe it is time to just drop this driver? It was never widly used, seems unmaintained and uses a cumbersome own queueing layer instead of blk-mq.
On 12/14/21 12:55 AM, Christoph Hellwig wrote: > Maybe it is time to just drop this driver? It was never widly used, > seems unmaintained and uses a cumbersome own queueing layer instead > of blk-mq. I think so, but let's do that independently of this series.
diff --git a/drivers/block/rsxx/core.c b/drivers/block/rsxx/core.c index 8d9d69f5dfbc..19b85d16d711 100644 --- a/drivers/block/rsxx/core.c +++ b/drivers/block/rsxx/core.c @@ -1037,12 +1037,6 @@ static void rsxx_pci_remove(struct pci_dev *dev) kfree(card); } -static int rsxx_pci_suspend(struct pci_dev *dev, pm_message_t state) -{ - /* We don't support suspend at this time. */ - return -ENOSYS; -} - static void rsxx_pci_shutdown(struct pci_dev *dev) { struct rsxx_cardinfo *card = pci_get_drvdata(dev); @@ -1083,7 +1077,6 @@ static struct pci_driver rsxx_pci_driver = { .id_table = rsxx_pci_ids, .probe = rsxx_pci_probe, .remove = rsxx_pci_remove, - .suspend = rsxx_pci_suspend, .shutdown = rsxx_pci_shutdown, .err_handler = &rsxx_err_handler, };