> How do I get the can0 interface to show up after modprobing > the at91_can driver? I assumed it would automagically happen.
I discovered that the board-specific code that registered the AT91 resource in at91sam9263_devices.c was a conditional compile. Since I was removing the CAN code from the kernel proper and putting it into modules, I had removed the CONFIG_CAN_* commands. This caused the AT91 code to not compile, and hence the driver would not register a device. Once I removed the conditionals, everything worked fine. Chris _______________________________________________ Socketcan-users mailing list [email protected] https://lists.berlios.de/mailman/listinfo/socketcan-users
