aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/oui2c.sh
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ieee1394/oui2c.sh')
-rw-r--r--drivers/ieee1394/oui2c.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/drivers/ieee1394/oui2c.sh b/drivers/ieee1394/oui2c.sh
deleted file mode 100644
index b9d0e8f10abb..000000000000
--- a/drivers/ieee1394/oui2c.sh
+++ /dev/null
@@ -1,22 +0,0 @@
1#!/bin/sh
2
3cat <<EOF
4/* Generated file for OUI database */
5
6
7#ifdef CONFIG_IEEE1394_OUI_DB
8struct oui_list_struct {
9 int oui;
10 char *name;
11} oui_list[] = {
12EOF
13
14while read oui name; do
15 echo " { 0x$oui, \"$name\" },"
16done
17
18cat <<EOF
19};
20
21#endif /* CONFIG_IEEE1394_OUI_DB */
22EOF