Alan Chandler wrote:
cdrom_start_packet_command( ...., &cdrom_seek_intr); cdrom_start_packet_command(....., cdrom_continuation);
What difference does the subtle '&' make (or the lack of it).
Nothing whatsoever. In C, a function name decays into a pointer to that function in expressions. That is, "func" becomes "&func" automatically. Ommiting it (cdrom_continuation) is the standard.
Rene.
-- Kernelnewbies: Help each other learn about the Linux kernel. Archive: http://mail.nl.linux.org/kernelnewbies/ FAQ: http://kernelnewbies.org/faq/