Skip to content

Commit a32f766

Browse files
committed
icm4268x: Fix typos on has_trigger API
Missed during icm42688 to icm4268x refactoring as it was mispelled in the first-place. Signed-off-by: Luis Ubieda <[email protected]>
1 parent 0033bed commit a32f766

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/sensor/tdk/icm4268x/icm4268x_decoder.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ static int icm4268x_decoder_get_size_info(struct sensor_chan_spec chan_spec, siz
730730
}
731731
}
732732

733-
static bool icm24688_decoder_has_trigger(const uint8_t *buffer, enum sensor_trigger_type trigger)
733+
static bool icm4268x_decoder_has_trigger(const uint8_t *buffer, enum sensor_trigger_type trigger)
734734
{
735735
const struct icm4268x_fifo_data *edata = (const struct icm4268x_fifo_data *)buffer;
736736

@@ -754,7 +754,7 @@ SENSOR_DECODER_API_DT_DEFINE() = {
754754
.get_frame_count = icm4268x_decoder_get_frame_count,
755755
.get_size_info = icm4268x_decoder_get_size_info,
756756
.decode = icm4268x_decoder_decode,
757-
.has_trigger = icm24688_decoder_has_trigger,
757+
.has_trigger = icm4268x_decoder_has_trigger,
758758
};
759759

760760
int icm4268x_get_decoder(const struct device *dev, const struct sensor_decoder_api **decoder)

0 commit comments

Comments
 (0)