diff options
author | Eddie James <eajames@linux.ibm.com> | 2023-06-12 14:56:47 -0500 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2023-08-09 15:43:27 +0930 |
commit | d6ce872e2e6e80c9621496f8048a2e9e096579b8 (patch) | |
tree | 858a3dc7d47fe3e04cbc917d9179e8b3b796634a | |
parent | c21d322e1ae5e1e80384c949f24b761f6f2b6c67 (diff) | |
download | linux-stable-d6ce872e2e6e80c9621496f8048a2e9e096579b8.tar.gz linux-stable-d6ce872e2e6e80c9621496f8048a2e9e096579b8.tar.bz2 linux-stable-d6ce872e2e6e80c9621496f8048a2e9e096579b8.zip |
fsi: sbefifo: Don't check status during probe
The status check during probe doesn't serve any purpose. Any attempt
to use the SBEFIFO will result in the same check and cleanup.
Signed-off-by: Eddie James <eajames@linux.ibm.com>
Link: https://lore.kernel.org/r/20230612195657.245125-5-eajames@linux.ibm.com
Signed-off-by: Joel Stanley <joel@jms.id.au>
-rw-r--r-- | drivers/fsi/fsi-sbefifo.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/fsi/fsi-sbefifo.c b/drivers/fsi/fsi-sbefifo.c index 4bae52c98620..60717fa755cd 100644 --- a/drivers/fsi/fsi-sbefifo.c +++ b/drivers/fsi/fsi-sbefifo.c @@ -1027,14 +1027,6 @@ static int sbefifo_probe(struct device *dev) mutex_init(&sbefifo->lock); sbefifo->timeout_start_rsp_ms = SBEFIFO_TIMEOUT_START_RSP; - /* - * Try cleaning up the FIFO. If this fails, we still register the - * driver and will try cleaning things up again on the next access. - */ - rc = sbefifo_cleanup_hw(sbefifo); - if (rc && rc != -ESHUTDOWN) - dev_err(dev, "Initial HW cleanup failed, will retry later\n"); - /* Create chardev for userspace access */ sbefifo->dev.type = &fsi_cdev_type; sbefifo->dev.parent = dev; |