summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-23 09:53:31 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-23 15:18:44 +0200
commit031df3914990db0336a0d386fb53558b05de467e (patch)
tree4661e22f0cdb3f9d06879f0194b77c75f62bac79 /c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h
parentbsps: Move interrupt controller support to bsps (diff)
downloadrtems-031df3914990db0336a0d386fb53558b05de467e.tar.bz2
bsps: Move legacy network drivers to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h')
-rw-r--r--c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h b/c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h
deleted file mode 100644
index 8289c4bf75..0000000000
--- a/c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * RTEMS/TCPIP driver for MPC8260 SCC HDLC networking
- *
- * Submitted by Andy Dachs <a.dachs@sstl.co.uk>
- * (c) Surrey Satellite Technology Limited, 2001
- *
- * On the ADS board the ethernet interface is connected to FCC2
- * but in my application I want TCP over HDLC (see README)
- * so will use SCC3 as the network interface. I have other plans
- * for the FCCs so am unlikely to add true ethernet support to
- * this BSP. Contributions welcome!
- *
- * COPYRIGHT (c) 1989-1997.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may in
- * the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-#ifndef __IF_HDLCSUBR_H
-#define __IF_HDLCSUBR_H
-
-struct ifnet;
-struct mbuf;
-struct sockaddr;
-struct rtentry;
-
-void hdlc_ifattach (struct ifnet *);
-void hdlc_input (struct ifnet *, struct mbuf *);
-int hdlc_output (struct ifnet *,
- struct mbuf *, struct sockaddr *, struct rtentry *);
-int hdlc_ioctl (struct ifnet *, int , caddr_t );
-
-#endif