drivers: npcx: Correct the macro parentheses
This corrects the following: 1. The priority of type cast is lower than member access. So don't need the redundant parentheses. 2. The macro should be added to the parentheses. Signed-off-by: Wealian Liao <WHLIAO@nuvoton.com>
This commit is contained in:
parent
499cc72411
commit
3565f71a72
11 changed files with 13 additions and 13 deletions
|
@ -69,7 +69,7 @@ struct ps2_npcx_ctrl_data {
|
|||
|
||||
#define DRV_DATA(dev) ((struct ps2_npcx_ctrl_data *)(dev)->data)
|
||||
|
||||
#define HAL_PS2_INSTANCE(dev) (struct ps2_reg *)(DRV_CONFIG(dev)->base)
|
||||
#define HAL_PS2_INSTANCE(dev) ((struct ps2_reg *)DRV_CONFIG(dev)->base)
|
||||
|
||||
static uint8_t ps2_npcx_ctrl_get_ch_clk_mask(uint8_t channel_id)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue