mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-18 23:09:58 -04:00
staging: rtl8192e: Fix parenthesis alignment
Fix parenthesis alignment in _rtl92e_read_eeprom_info in order to silence the following checkpatch warning: CHECK: Alignment should match open parenthesis Signed-off-by: Leonardo Kenji <leokk06@gmail.com> Link: https://lore.kernel.org/r/20240822002543.44835-1-leokk06@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
94f7f4b90d
commit
8a07f476bd
@@ -289,7 +289,7 @@ static void _rtl92e_read_eeprom_info(struct net_device *dev)
|
||||
|
||||
for (i = 0; i < 6; i += 2) {
|
||||
usValue = rtl92e_eeprom_read(dev,
|
||||
(EEPROM_NODE_ADDRESS_BYTE_0 + i) >> 1);
|
||||
(EEPROM_NODE_ADDRESS_BYTE_0 + i) >> 1);
|
||||
*(u16 *)(&addr[i]) = usValue;
|
||||
}
|
||||
eth_hw_addr_set(dev, addr);
|
||||
|
||||
Reference in New Issue
Block a user