mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	firmware: raspberrypi: Fix type assignment
We silently cast an unsigned int into a __le32 which makes sparse
complain. Moreover, we never actually convert endianness between the
CPU's and the expected little-endian value. Fix both at once by calling
cpu_to_le32().
Fixes: 40c31955e4 ("firmware: raspberrypi: Provide a helper to query a clock max rate")
Reported-by: kernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/r/20221116091712.1309651-3-maxime@cerno.tech
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20230102115255.17802-1-maxime@cerno.tech
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
			
			
This commit is contained in:
		
							parent
							
								
									1b929c02af
								
							
						
					
					
						commit
						a1904fa4df
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -170,7 +170,7 @@ struct rpi_firmware_clk_rate_request {
 | 
			
		|||
 | 
			
		||||
#define RPI_FIRMWARE_CLK_RATE_REQUEST(_id)	\
 | 
			
		||||
	{					\
 | 
			
		||||
		.id = _id,			\
 | 
			
		||||
		.id = cpu_to_le32(_id),		\
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
#if IS_ENABLED(CONFIG_RASPBERRYPI_FIRMWARE)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue