[05/57] media: atomisp: Silence "isys dma store at addr, val" debug messages

Message ID 20230123125205.622152-6-hdegoede@redhat.com (mailing list archive)
State Accepted
Headers
Series media: atomisp: Big power-management changes + lots of fixes |

Commit Message

Hans de Goede Jan. 23, 2023, 12:51 p.m. UTC
  These are clearly debug messages, printing these all the time is not
useful.

Silence these by simply removing them altogether.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 .../media/atomisp/pci/css_2401_system/host/isys_dma_private.h   | 2 --
 1 file changed, 2 deletions(-)
  

Comments

Andy Shevchenko Jan. 23, 2023, 2:18 p.m. UTC | #1
On Mon, Jan 23, 2023 at 01:51:13PM +0100, Hans de Goede wrote:
> These are clearly debug messages, printing these all the time is not
> useful.
> 
> Silence these by simply removing them altogether.

Reviewed-by: Andy Shevchenko <andy@kernel.org>

> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
>  .../media/atomisp/pci/css_2401_system/host/isys_dma_private.h   | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h b/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h
> index a313e1dc7c71..d65fe9ec9049 100644
> --- a/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h
> +++ b/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h
> @@ -34,8 +34,6 @@ void isys2401_dma_reg_store(const isys2401_dma_ID_t	dma_id,
>  
>  	reg_loc = ISYS2401_DMA_BASE[dma_id] + (reg * sizeof(hrt_data));
>  
> -	ia_css_print("isys dma store at addr(0x%x) val(%u)\n", reg_loc,
> -		     (unsigned int)value);
>  	ia_css_device_store_uint32(reg_loc, value);
>  }
>  
> -- 
> 2.39.0
>
  

Patch

diff --git a/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h b/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h
index a313e1dc7c71..d65fe9ec9049 100644
--- a/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h
+++ b/drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma_private.h
@@ -34,8 +34,6 @@  void isys2401_dma_reg_store(const isys2401_dma_ID_t	dma_id,
 
 	reg_loc = ISYS2401_DMA_BASE[dma_id] + (reg * sizeof(hrt_data));
 
-	ia_css_print("isys dma store at addr(0x%x) val(%u)\n", reg_loc,
-		     (unsigned int)value);
 	ia_css_device_store_uint32(reg_loc, value);
 }