X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/b18e586453cf962a4032890f34d05a9fd362cf02..c6162f4f8d268b7ba1d613459dd1519f587a698e:/lincan/src/boardlist.c diff --git a/lincan/src/boardlist.c b/lincan/src/boardlist.c index aa6fa05..be1f8ad 100644 --- a/lincan/src/boardlist.c +++ b/lincan/src/boardlist.c @@ -77,6 +77,7 @@ extern int pcan_pci_register(struct hwspecops_t *hwspecops); extern int esdpci200_register(struct hwspecops_t *hwspecops); extern int esdpci266_register(struct hwspecops_t *hwspecops); extern int sh7760_register(struct hwspecops_t *hwspecops); +extern int mpc5200_register(struct hwspecops_t *hwspecops); const struct boardtype_t can_boardtypes[]={ #ifdef CONFIG_OC_LINCAN_CARD_template @@ -202,7 +203,10 @@ const struct boardtype_t can_boardtypes[]={ #if defined(CONFIG_OC_LINCAN_CARD_usbcan) {"usbcan", usbcan_register, 0}, #endif - {NULL} + #if defined(CONFIG_OC_LINCAN_CARD_mpc5200) + {"mpc5200", mpc5200_register, 2}, + #endif + {NULL} }; const struct boardtype_t* boardtype_find(const char *str)