mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 01:55:51 +02:00
media: atomisp: Remove redundant return statement
The function mmu_reg_store() returns void. The final return statement is redundant as it is followed by the closing brace. Remove the redundant return statement to simplify code and adhere to kernel coding style. Signed-off-by: Mahad Ibrahim <mahad.ibrahim.dev@gmail.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
This commit is contained in:
parent
0a41dd4aab
commit
5ed76a163b
|
|
@ -63,7 +63,6 @@ static inline void mmu_reg_store(
|
|||
assert(ID < N_MMU_ID);
|
||||
assert(MMU_BASE[ID] != (hrt_address) - 1);
|
||||
ia_css_device_store_uint32(MMU_BASE[ID] + reg * sizeof(hrt_data), value);
|
||||
return;
|
||||
}
|
||||
|
||||
/*! Read from a control register of MMU[ID]
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user