USB: Dealias -110 code (more complete)
[linux-2.6/cjktty.git] / drivers / ieee1394 / oui2c.sh
blobb9d0e8f10abb3287c370c909e2154a2dca4fc111
1 #!/bin/sh
3 cat <<EOF
4 /* Generated file for OUI database */
7 #ifdef CONFIG_IEEE1394_OUI_DB
8 struct oui_list_struct {
9 int oui;
10 char *name;
11 } oui_list[] = {
12 EOF
14 while read oui name; do
15 echo " { 0x$oui, \"$name\" },"
16 done
18 cat <<EOF
21 #endif /* CONFIG_IEEE1394_OUI_DB */
22 EOF