aboutsummaryrefslogtreecommitdiff
path: root/drivers/ieee1394/oui2c.sh
blob: b9d0e8f10abb3287c370c909e2154a2dca4fc111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

cat <<EOF
/* Generated file for OUI database */


#ifdef CONFIG_IEEE1394_OUI_DB
struct oui_list_struct {
	int oui;
	char *name;
} oui_list[] = {
EOF

while read oui name; do
	echo "	{ 0x$oui, \"$name\" },"
done

cat <<EOF
};

#endif /* CONFIG_IEEE1394_OUI_DB */
EOF