summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/pcmcia_/merge_from_pcitable
blob: f91002517d45f796ab2cf8fa0d6f9431a4886927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl

# This program will show on stdout yenta_socket stuff from pcitable
# which is not in probe.c

use MDK::Common;

my @probelines = cat_('probe.c');
my $status = 0;
foreach (@probelines) {
    if ($status == 0) {
	/^pci_id_t pci_id\[\] = {/ and $status = 1;
    } elsif ($status == 1) {
	/^\s*{\s*0x([\da-f]+),\s*0x([\da-f]+),\s*"([^"]*)",\s*"([^"]*)"\s*}/
	  and push @probes, { vendor => $1, device => $2, tag => $3, name => $4, vd => "$1$2" };
	/^};/ and last;
    }
}

require '/usr/bin/merge2pcitable.pl';
my $drivers = read_pcitable("/usr/share/ldetect-lst/pcitable");

foreach my $k (sort keys %$drivers) {
    $v = $drivers->{$k};
    $k =~ /^(....)(....)/;
    push @pcitable, { vendor => $1, device => $2, driver => $v->[0], name => $v->[1], vd => "$1$2" };
}

foreach my $p (@pcitable) {
    next if $p->{driver} ne 'yenta_socket';
    member($p->{vd}, map { $_->{vd} } @probes) or
      print "    { 0x$p->{vendor}, 0x$p->{device}, \"..\", \"$p->{name}\" },\n";
}