2

Is it possible for a function in a linux kernel module calling a function in another module ?

BusyTraveller
  • 167
  • 2
  • 13

1 Answers1

2

Yes. Of course, the other kernel module must be loaded.

For an example, look at the USB code, which is implemented as a mullti-layer driver, with each layer in its own module.Reference link here.

msc
  • 32,079
  • 22
  • 110
  • 197