staging: rts5208: Resolve checkpatch.pl issues.
This patch removes unwanted use of dev_info for ftrace-like functionality as suggested by checkpatch.pl. Signed-off-by: Charlie Sands <sandsch@northvilleschools.net> Link: https://lore.kernel.org/r/YjKimAdiRfRVfGl8@sckzor-linux.localdomain Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9314a822e5
commit
56bd392be5
|
@ -159,8 +159,6 @@ static int command_abort(struct scsi_cmnd *srb)
|
||||||
struct rtsx_dev *dev = host_to_rtsx(host);
|
struct rtsx_dev *dev = host_to_rtsx(host);
|
||||||
struct rtsx_chip *chip = dev->chip;
|
struct rtsx_chip *chip = dev->chip;
|
||||||
|
|
||||||
dev_info(&dev->pci->dev, "%s called\n", __func__);
|
|
||||||
|
|
||||||
scsi_lock(host);
|
scsi_lock(host);
|
||||||
|
|
||||||
/* Is this command still active? */
|
/* Is this command still active? */
|
||||||
|
@ -186,10 +184,6 @@ static int command_abort(struct scsi_cmnd *srb)
|
||||||
*/
|
*/
|
||||||
static int device_reset(struct scsi_cmnd *srb)
|
static int device_reset(struct scsi_cmnd *srb)
|
||||||
{
|
{
|
||||||
struct rtsx_dev *dev = host_to_rtsx(srb->device->host);
|
|
||||||
|
|
||||||
dev_info(&dev->pci->dev, "%s called\n", __func__);
|
|
||||||
|
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -968,8 +962,6 @@ static void rtsx_remove(struct pci_dev *pci)
|
||||||
{
|
{
|
||||||
struct rtsx_dev *dev = pci_get_drvdata(pci);
|
struct rtsx_dev *dev = pci_get_drvdata(pci);
|
||||||
|
|
||||||
dev_info(&pci->dev, "%s called\n", __func__);
|
|
||||||
|
|
||||||
quiesce_and_remove_host(dev);
|
quiesce_and_remove_host(dev);
|
||||||
release_everything(dev);
|
release_everything(dev);
|
||||||
pci_release_regions(pci);
|
pci_release_regions(pci);
|
||||||
|
|
Loading…
Reference in New Issue