forked from mirrors/linux
		
	ARM: bcm2835: Switch to use %ptT
Use %ptT instead of open coded variant to print content of time64_t type in human readable format. Link: https://lore.kernel.org/r/20200415170046.33374-3-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> Rewieved-by: Petr Mladek <pmladek@suse.com> Signed-off-by: Petr Mladek <pmladek@suse.com>
This commit is contained in:
		
							parent
							
								
									7daac5b2fd
								
							
						
					
					
						commit
						4a60f58ee0
					
				
					 1 changed files with 3 additions and 9 deletions
				
			
		| 
						 | 
					@ -182,16 +182,10 @@ rpi_firmware_print_firmware_revision(struct rpi_firmware *fw)
 | 
				
			||||||
					RPI_FIRMWARE_GET_FIRMWARE_REVISION,
 | 
										RPI_FIRMWARE_GET_FIRMWARE_REVISION,
 | 
				
			||||||
					&packet, sizeof(packet));
 | 
										&packet, sizeof(packet));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (ret == 0) {
 | 
						if (ret)
 | 
				
			||||||
		struct tm tm;
 | 
							return;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		time64_to_tm(packet, 0, &tm);
 | 
						dev_info(fw->cl.dev, "Attached to firmware from %ptT\n", &packet);
 | 
				
			||||||
 | 
					 | 
				
			||||||
		dev_info(fw->cl.dev,
 | 
					 | 
				
			||||||
			 "Attached to firmware from %04ld-%02d-%02d %02d:%02d\n",
 | 
					 | 
				
			||||||
			 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
 | 
					 | 
				
			||||||
			 tm.tm_hour, tm.tm_min);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void
 | 
					static void
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue