Hi,
I have a driver
whose source lies in a single file in
/usr/src/linux/drivers/net.
I want to see the
assembly code this driver is compiled into.
I've done this
before, in a kernel a module, by adding a line to the Makefile
with the proper
flags.
In the kernel
though, the Makefiles aren't as simple.
How would I do this
for my driver ?
TIA