From 041431f38f4a078d2b3b081644864da02ca8eda3 Mon Sep 17 00:00:00 2001 From: Blaine Kubesh Date: Mon, 18 May 2020 18:48:24 -0400 Subject: [PATCH] Update icm803.c --- rigs/icmarine/icm803.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/icmarine/icm803.c b/rigs/icmarine/icm803.c index 622c3b827..cd358ed93 100644 --- a/rigs/icmarine/icm803.c +++ b/rigs/icmarine/icm803.c @@ -51,7 +51,7 @@ #define ICM803_STR_CAL { 2, {{ 0, -60}, { 8, 60}} } -static const struct icmarine_priv_caps ICM803_priv_caps = +static const struct icmarine_priv_caps icm803_priv_caps = { .default_remote_id = 20, /* default address */ }; @@ -155,7 +155,7 @@ const struct rig_caps icm803_caps = .set_conf = icmarine_set_conf, .get_conf = icmarine_get_conf, - .priv = (void *)& ICM803_priv_caps, + .priv = (void *)& icm803_priv_caps, .rig_init = icmarine_init, .rig_cleanup = icmarine_cleanup, .rig_open = NULL,