jazz
jazz

Reputation: 19

Accessing source codes to modify Linux driver

I'm a beginner at Linux kernel. I have to modify the Linux driver for a project.

how do I access the source code files (such as ani.c, ath9k.h, etc.)?

I tried looking for them in the following path, but I only found kernel object files (*.ko).

PATH: drivers/net/wireless/ath/ath9k/

Upvotes: 1

Views: 389

Answers (1)

Harry Cutts
Harry Cutts

Reputation: 1424

It's probably easiest to find them on Linus's GitHub account. You might find the guides linked from "Working with the kernel development community" helpful too.

Upvotes: 3

Related Questions