~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to scripts/mod/file2alias.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
702
702
        return 1;
703
703
}
704
704
 
 
705
/* Looks like: bcma:mNidNrevNclN. */
 
706
static int do_bcma_entry(const char *filename,
 
707
                         struct bcma_device_id *id, char *alias)
 
708
{
 
709
        id->manuf = TO_NATIVE(id->manuf);
 
710
        id->id = TO_NATIVE(id->id);
 
711
        id->rev = TO_NATIVE(id->rev);
 
712
        id->class = TO_NATIVE(id->class);
 
713
 
 
714
        strcpy(alias, "bcma:");
 
715
        ADD(alias, "m", id->manuf != BCMA_ANY_MANUF, id->manuf);
 
716
        ADD(alias, "id", id->id != BCMA_ANY_ID, id->id);
 
717
        ADD(alias, "rev", id->rev != BCMA_ANY_REV, id->rev);
 
718
        ADD(alias, "cl", id->class != BCMA_ANY_CLASS, id->class);
 
719
        add_wildcard(alias);
 
720
        return 1;
 
721
}
 
722
 
705
723
/* Looks like: virtio:dNvN */
706
724
static int do_virtio_entry(const char *filename, struct virtio_device_id *id,
707
725
                           char *alias)
968
986
                do_table(symval, sym->st_size,
969
987
                         sizeof(struct ssb_device_id), "ssb",
970
988
                         do_ssb_entry, mod);
 
989
        else if (sym_is(symname, "__mod_bcma_device_table"))
 
990
                do_table(symval, sym->st_size,
 
991
                         sizeof(struct bcma_device_id), "bcma",
 
992
                         do_bcma_entry, mod);
971
993
        else if (sym_is(symname, "__mod_virtio_device_table"))
972
994
                do_table(symval, sym->st_size,
973
995
                         sizeof(struct virtio_device_id), "virtio",