Where can I find the source code to an SDIO controller in the Linux kernel? I not looking for a driver for a device that uses SDIO as interface, but the source code that operates the SDIO controller itself.
Printable View
Where can I find the source code to an SDIO controller in the Linux kernel? I not looking for a driver for a device that uses SDIO as interface, but the source code that operates the SDIO controller itself.
In my idea grep command is your friend. this command can search in files for a word fast. e.g.
which searchs recursively (-r) for " SDIO " string with case ignoring (-i) in tree ~/src/kernel3Code:grep -ri " SDIO " ~/src/kernel3
Sincerely,
Yasser.