Home | History | Annotate | Download | only in altboot

Lines Matching defs:brdprop

46     void xxx ## setup(struct brdprop *); \
47 void xxx ## brdfix(struct brdprop *); \
48 void xxx ## pcifix(struct brdprop *); \
49 void xxx ## launch(struct brdprop *); \
123 static struct brdprop brdlist[] = {
197 static struct brdprop *brdprop;
296 brdprop = brd_lookup(brdtype);
302 if (brdprop->extclk != 0)
303 extclk = brdprop->extclk;
321 consname = brdprop->consname;
322 consport = brdprop->consport;
336 bi_cons.speed = brdprop->consspeed;
338 snprintf(bi_fam.name, sizeof(bi_fam.name), "%s", brdprop->family);
341 struct brdprop *
357 if (brdprop->setup == NULL)
359 (*brdprop->setup)(brdprop);
366 if (brdprop->brdfix == NULL)
368 (*brdprop->brdfix)(brdprop);
375 if (brdprop->pcifix == NULL)
377 (*brdprop->pcifix)(brdprop);
384 if (brdprop->launch == NULL)
386 (*brdprop->launch)(brdprop);
390 encsetup(struct brdprop *brd)
405 encbrdfix(struct brdprop *brd)
467 encpcifix(struct brdprop *brd)
567 motsetup(struct brdprop *brd)
582 motbrdfix(struct brdprop *brd)
594 motpcifix(struct brdprop *brd)
689 kurosetup(struct brdprop *brd)
699 kurobrdfix(struct brdprop *brd)
716 synosetup(struct brdprop *brd)
732 synobrdfix(struct brdprop *brd)
744 synopcifix(struct brdprop *brd)
899 synolaunch(struct brdprop *brd)
932 qnapbrdfix(struct brdprop *brd)
949 iomegabrdfix(struct brdprop *brd)
966 dlinkbrdfix(struct brdprop *brd)
975 nhnasbrdfix(struct brdprop *brd)
993 kurot4brdfix(struct brdprop *brd)
1006 if (brdprop->reset != NULL)
1007 (*brdprop->reset)();