From e6aee45b59c6aa73e1e1bc966431faee6831095a Mon Sep 17 00:00:00 2001 From: Michael Black Date: Tue, 17 Dec 2019 08:23:19 -0600 Subject: [PATCH] Add icom_rig_open to ic7300.c and ic785x.c --- icom/ic7300.c | 2 +- icom/ic785x.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/icom/ic7300.c b/icom/ic7300.c index 70d085975..bcbed2d9a 100644 --- a/icom/ic7300.c +++ b/icom/ic7300.c @@ -346,7 +346,7 @@ const struct rig_caps ic7300_caps = .priv = (void *)& IC7300_priv_caps, .rig_init = icom_init, .rig_cleanup = icom_cleanup, - .rig_open = NULL, + .rig_open = icom_rig_open, .rig_close = NULL, .set_freq = icom_set_freq, diff --git a/icom/ic785x.c b/icom/ic785x.c index be6583c73..1600b7e68 100644 --- a/icom/ic785x.c +++ b/icom/ic785x.c @@ -279,7 +279,7 @@ const struct rig_caps ic785x_caps = .priv = (void *)& ic785x_priv_caps, .rig_init = icom_init, .rig_cleanup = icom_cleanup, - .rig_open = NULL, + .rig_open = icom_rig_open, .rig_close = NULL, .set_freq = icom_set_freq,