aboutsummaryrefslogtreecommitdiffstats
path: root/package/linux/kernel-source/include/bcmenetmib.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-05-28 09:17:29 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-05-28 09:17:29 +0000
commit1c4a2a55f76e481a2d1bc005405b9ce856d58939 (patch)
tree80dfa6ecb493ee8cb9ca1436f1b37ee89f320a55 /package/linux/kernel-source/include/bcmenetmib.h
parentfdd5681c06468a606180f04c2533c8ba213a37f6 (diff)
downloadmaster-187ad058-1c4a2a55f76e481a2d1bc005405b9ce856d58939.tar.gz
master-187ad058-1c4a2a55f76e481a2d1bc005405b9ce856d58939.tar.bz2
master-187ad058-1c4a2a55f76e481a2d1bc005405b9ce856d58939.zip
move package/linux into target/linux, use wbx' new kernel code. support building images with more than one kernel, split kernel module parts off of packages that use their own kernel modules (fuse, shfs, openswan). some cleanup in the image building process in target/. image builder is disabled for now, needs some fixing.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1085 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/linux/kernel-source/include/bcmenetmib.h')
-rw-r--r--package/linux/kernel-source/include/bcmenetmib.h81
1 files changed, 0 insertions, 81 deletions
diff --git a/package/linux/kernel-source/include/bcmenetmib.h b/package/linux/kernel-source/include/bcmenetmib.h
deleted file mode 100644
index 260d071ba8..0000000000
--- a/package/linux/kernel-source/include/bcmenetmib.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Hardware-specific MIB definition for
- * Broadcom Home Networking Division
- * BCM44XX and BCM47XX 10/100 Mbps Ethernet cores.
- *
- * Copyright 2004, Broadcom Corporation
- * All Rights Reserved.
- *
- * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
- * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
- * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
- * $Id$
- */
-
-#ifndef _bcmenetmib_h_
-#define _bcmenetmib_h_
-
-/* cpp contortions to concatenate w/arg prescan */
-#ifndef PAD
-#define _PADLINE(line) pad ## line
-#define _XSTR(line) _PADLINE(line)
-#define PAD _XSTR(__LINE__)
-#endif /* PAD */
-
-/*
- * EMAC MIB Registers
- */
-typedef volatile struct {
- uint32 tx_good_octets;
- uint32 tx_good_pkts;
- uint32 tx_octets;
- uint32 tx_pkts;
- uint32 tx_broadcast_pkts;
- uint32 tx_multicast_pkts;
- uint32 tx_len_64;
- uint32 tx_len_65_to_127;
- uint32 tx_len_128_to_255;
- uint32 tx_len_256_to_511;
- uint32 tx_len_512_to_1023;
- uint32 tx_len_1024_to_max;
- uint32 tx_jabber_pkts;
- uint32 tx_oversize_pkts;
- uint32 tx_fragment_pkts;
- uint32 tx_underruns;
- uint32 tx_total_cols;
- uint32 tx_single_cols;
- uint32 tx_multiple_cols;
- uint32 tx_excessive_cols;
- uint32 tx_late_cols;
- uint32 tx_defered;
- uint32 tx_carrier_lost;
- uint32 tx_pause_pkts;
- uint32 PAD[8];
-
- uint32 rx_good_octets;
- uint32 rx_good_pkts;
- uint32 rx_octets;
- uint32 rx_pkts;
- uint32 rx_broadcast_pkts;
- uint32 rx_multicast_pkts;
- uint32 rx_len_64;
- uint32 rx_len_65_to_127;
- uint32 rx_len_128_to_255;
- uint32 rx_len_256_to_511;
- uint32 rx_len_512_to_1023;
- uint32 rx_len_1024_to_max;
- uint32 rx_jabber_pkts;
- uint32 rx_oversize_pkts;
- uint32 rx_fragment_pkts;
- uint32 rx_missed_pkts;
- uint32 rx_crc_align_errs;
- uint32 rx_undersize;
- uint32 rx_crc_errs;
- uint32 rx_align_errs;
- uint32 rx_symbol_errs;
- uint32 rx_pause_pkts;
- uint32 rx_nonpause_pkts;
-} bcmenetmib_t;
-
-#endif /* _bcmenetmib_h_ */