Skip to content

Commit e62747d

Browse files
Hieu NguyenKhiemNguyenT
authored andcommitted
hal: renesas: rzg: Rename GPT capture compare isr of rzg-fsp
Rename GPT capture compare isr of rzg/r_gpt from gpt_capture_a_isr, gpt_capture_b_isr to gpt_capture_compare_a_isr, gpt_capture_compare_b_isr respectively Signed-off-by: Hieu Nguyen <[email protected]> Signed-off-by: Nhut Nguyen <[email protected]>
1 parent a1d6e02 commit e62747d

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

drivers/rz/README

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,8 @@ Patch List:
6262
* Use r_timer_api.h of rzv-fsp to support compare match
6363
Impacted files:
6464
drivers/rz/fsp/inc/api/r_timer_api.h
65+
66+
* Rename GPT capture compare ISR from gpt_capture_a_isr, gpt_capture_b_isr to
67+
gpt_capture_compare_a_isr, gpt_capture_compare_b_isr respectively
68+
Impacted files:
69+
drivers/rz/fsp/src/rzg/r_gpt/r_gpt.c

drivers/rz/fsp/src/rzg/r_gpt/r_gpt.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ static void r_gpt_call_callback(gpt_instance_ctrl_t * p_ctrl, timer_event_t even
113113
**********************************************************************************************************************/
114114
void gpt_counter_overflow_isr(void);
115115
void gpt_counter_underflow_isr(void);
116-
void gpt_capture_a_isr(void);
117-
void gpt_capture_b_isr(void);
116+
void gpt_capture_compare_a_isr(void);
117+
void gpt_capture_compare_b_isr(void);
118118

119119
/***********************************************************************************************************************
120120
* Private global variables
@@ -1824,7 +1824,7 @@ void gpt_counter_underflow_isr (void)
18241824
*
18251825
* Clears interrupt, disables captures if one-shot mode, and calls callback if one was provided in the open function.
18261826
**********************************************************************************************************************/
1827-
void gpt_capture_a_isr (void)
1827+
void gpt_capture_compare_a_isr (void)
18281828
{
18291829
r_gpt_capture_common_isr(GPT_PRV_CAPTURE_EVENT_A);
18301830
}
@@ -1834,7 +1834,7 @@ void gpt_capture_a_isr (void)
18341834
*
18351835
* Clears interrupt, disables captures if one-shot mode, and calls callback if one was provided in the open function.
18361836
**********************************************************************************************************************/
1837-
void gpt_capture_b_isr (void)
1837+
void gpt_capture_compare_b_isr (void)
18381838
{
18391839
r_gpt_capture_common_isr(GPT_PRV_CAPTURE_EVENT_B);
18401840
}

0 commit comments

Comments
 (0)