aboutsummaryrefslogtreecommitdiffstats
path: root/src/generic/canbus.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/generic/canbus.c')
-rw-r--r--src/generic/canbus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/generic/canbus.c b/src/generic/canbus.c
index 941ccd00..0c7fc82d 100644
--- a/src/generic/canbus.c
+++ b/src/generic/canbus.c
@@ -5,7 +5,7 @@
// This file may be distributed under the terms of the GNU GPLv3 license.
#include "autoconf.h" // CONFIG_CANBUS_FREQUENCY
-#include "canbus.h" // canbus_send
+#include "canbus.h" // canhw_send
#include "canserial.h" // canserial_send
#include "command.h" // DECL_CONSTANT
@@ -14,13 +14,13 @@ DECL_CONSTANT("CANBUS_FREQUENCY", CONFIG_CANBUS_FREQUENCY);
int
canserial_send(struct canbus_msg *msg)
{
- return canbus_send(msg);
+ return canhw_send(msg);
}
void
canserial_set_filter(uint32_t id)
{
- canbus_set_filter(id);
+ canhw_set_filter(id);
}
void