From 84a5558c389c99e849fafa4d9b05820da8a09935 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Fri, 2 Feb 2018 22:08:03 +0000 Subject: [PATCH] [arswitch] Stub out the ATU table dump in AR9340 switches until I implement this. --- sys/dev/etherswitch/arswitch/arswitch_9340.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sys/dev/etherswitch/arswitch/arswitch_9340.c b/sys/dev/etherswitch/arswitch/arswitch_9340.c index 13cc4b77c5b0..7fbf60627f22 100644 --- a/sys/dev/etherswitch/arswitch/arswitch_9340.c +++ b/sys/dev/etherswitch/arswitch/arswitch_9340.c @@ -183,6 +183,16 @@ ar9340_hw_global_setup(struct arswitch_softc *sc) return (0); } +static int +ar9340_atu_fetch_table(struct arswitch_softc *sc, etherswitch_atu_entry_t *e, + int atu_fetch_op) +{ + + /* XXX TODO */ + return (ENXIO); +} + + /* * The AR9340 switch probes (almost) the same as the AR7240 on-chip switch. * @@ -213,6 +223,7 @@ ar9340_attach(struct arswitch_softc *sc) sc->hal.arswitch_hw_setup = ar9340_hw_setup; sc->hal.arswitch_hw_global_setup = ar9340_hw_global_setup; sc->hal.arswitch_atu_learn_default = ar9340_atu_learn_default; + sc->hal.arswitch_atu_fetch_table = ar9340_atu_fetch_table; /* Set the switch vlan capabilities. */ sc->info.es_vlan_caps = ETHERSWITCH_VLAN_DOT1Q |