i40evf: use correct format for printing MAC addresses
The correct format is %pM, not %pMAC. Change-ID: Idb335723a966fe56db3a72b9c07c08ca66f9db3c Signed-off-by: Mitch Williams <mitch.a.williams@intel.com> Tested-by: Sibai Li <sibai.li@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
		
					parent
					
						
							
								80e7289356
							
						
					
				
			
			
				commit
				
					
						b34f90e704
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -2058,7 +2058,7 @@ static void i40evf_init_task(struct work_struct *work) | |||
| 	netdev->hw_features &= ~NETIF_F_RXCSUM; | ||||
| 
 | ||||
| 	if (!is_valid_ether_addr(adapter->hw.mac.addr)) { | ||||
| 		dev_info(&pdev->dev, "Invalid MAC address %pMAC, using random\n", | ||||
| 		dev_info(&pdev->dev, "Invalid MAC address %pM, using random\n", | ||||
| 			 adapter->hw.mac.addr); | ||||
| 		random_ether_addr(adapter->hw.mac.addr); | ||||
| 	} | ||||
|  | @ -2116,7 +2116,7 @@ static void i40evf_init_task(struct work_struct *work) | |||
| 
 | ||||
| 	netif_tx_stop_all_queues(netdev); | ||||
| 
 | ||||
| 	dev_info(&pdev->dev, "MAC address: %pMAC\n", adapter->hw.mac.addr); | ||||
| 	dev_info(&pdev->dev, "MAC address: %pM\n", adapter->hw.mac.addr); | ||||
| 	if (netdev->features & NETIF_F_GRO) | ||||
| 		dev_info(&pdev->dev, "GRO is enabled\n"); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Mitch Williams
				Mitch Williams