diff mbox series

[PATCHv2,firmware-utils] iptime-crc32: add support for AX8004BCM

Message ID 20220209143710.1402991-1-namu@theseed.io
State Superseded
Headers show
Series [PATCHv2,firmware-utils] iptime-crc32: add support for AX8004BCM | expand

Commit Message

Namu Kim Feb. 9, 2022, 2:37 p.m. UTC
This commit is preparations for adding support for device AX8004BCM
similar to AX2004BCM.

Signed-off-by: Kim Namu <namu@theseed.io>
---
 src/iptime-crc32.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Namu Kim Feb. 9, 2022, 2:42 p.m. UTC | #1
sorry, I'm confused so I'll resend v3.

2022년 2월 9일 (수) 오후 11:37, Kim Namu <namu@theseed.io>님이 작성:
>
> This commit is preparations for adding support for device AX8004BCM
> similar to AX2004BCM.
>
> Signed-off-by: Kim Namu <namu@theseed.io>
> ---
>  src/iptime-crc32.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/src/iptime-crc32.c b/src/iptime-crc32.c
> index 51b0519..ef08afa 100644
> --- a/src/iptime-crc32.c
> +++ b/src/iptime-crc32.c
> @@ -53,6 +53,7 @@ struct board_info {
>
>  struct board_info boards[] = {
>         { .model = "ax2004m", .payload_offset = 0x38 },
> +       { .model = "ax8004m", .payload_offset = 0x38 },
>         { /* sentinel */ }
>  };
>
> --
> 2.35.1
>
diff mbox series

Patch

diff --git a/src/iptime-crc32.c b/src/iptime-crc32.c
index 51b0519..ef08afa 100644
--- a/src/iptime-crc32.c
+++ b/src/iptime-crc32.c
@@ -53,6 +53,7 @@  struct board_info {
 
 struct board_info boards[] = {
 	{ .model = "ax2004m", .payload_offset = 0x38 },
+	{ .model = "ax8004m", .payload_offset = 0x38 },
 	{ /* sentinel */ }
 };