diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-01-02 16:56:53 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-02-08 14:57:43 -0500 |
commit | e658bc556b3b2e699c5d9ba65fcc955f35105f42 (patch) | |
tree | 3332ec347fd566100f272adcdef4d88f78085718 /drivers/ieee1394/oui2c.sh | |
parent | d395a1774f34600d72f7d3796716f350ef29584b (diff) |
the scheduled IEEE1394_OUI_DB removal
This patch contains the scheduled IEEE1394_OUI_DB removal.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Update: Also remove drivers/ieee1394/.gitignore.
Remove now unused struct members in drivers/ieee1394/nodemgr.h.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/oui2c.sh')
-rw-r--r-- | drivers/ieee1394/oui2c.sh | 22 |
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 | |||
3 | cat <<EOF | ||
4 | /* Generated file for OUI database */ | ||
5 | |||
6 | |||
7 | #ifdef CONFIG_IEEE1394_OUI_DB | ||
8 | struct oui_list_struct { | ||
9 | int oui; | ||
10 | char *name; | ||
11 | } oui_list[] = { | ||
12 | EOF | ||
13 | |||
14 | while read oui name; do | ||
15 | echo " { 0x$oui, \"$name\" }," | ||
16 | done | ||
17 | |||
18 | cat <<EOF | ||
19 | }; | ||
20 | |||
21 | #endif /* CONFIG_IEEE1394_OUI_DB */ | ||
22 | EOF | ||