summaryrefslogtreecommitdiff
path: root/libdde-linux26/libdde_linux26/contrib/include/net/dsa.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:15:01 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:15:01 +0000
commit7996a3d79d55b7f879dfd62e202bbfe2963718d3 (patch)
tree8d9f6759fec4099b9be503c11c7ed174f7204980 /libdde-linux26/libdde_linux26/contrib/include/net/dsa.h
parent4fbe7358c7747a9165f776eb19addbb9baf7def2 (diff)
really properly move files
Diffstat (limited to 'libdde-linux26/libdde_linux26/contrib/include/net/dsa.h')
-rw-r--r--libdde-linux26/libdde_linux26/contrib/include/net/dsa.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/libdde-linux26/libdde_linux26/contrib/include/net/dsa.h b/libdde-linux26/libdde_linux26/contrib/include/net/dsa.h
deleted file mode 100644
index 52e97bfc..00000000
--- a/libdde-linux26/libdde_linux26/contrib/include/net/dsa.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * include/net/dsa.h - Driver for Distributed Switch Architecture switch chips
- * Copyright (c) 2008 Marvell Semiconductor
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
-
-#ifndef __LINUX_NET_DSA_H
-#define __LINUX_NET_DSA_H
-
-#define DSA_MAX_PORTS 12
-
-struct dsa_platform_data {
- /*
- * Reference to a Linux network interface that connects
- * to the switch chip.
- */
- struct device *netdev;
-
- /*
- * How to access the switch configuration registers, and
- * the names of the switch ports (use "cpu" to designate
- * the switch port that the cpu is connected to).
- */
- struct device *mii_bus;
- int sw_addr;
- char *port_names[DSA_MAX_PORTS];
-};
-
-extern bool dsa_uses_dsa_tags(void *dsa_ptr);
-extern bool dsa_uses_trailer_tags(void *dsa_ptr);
-
-
-#endif