Is there some way in FreeBSD to actually prevent a driver from attaching to some piece of hardware it would otherwise happily attach (other than hacking device_id list in driver source)?
Why am I asking this is that I have snd_hda attaching to some sound module on my graphic card, and although I am not using that for anything I get lots of messages like
(one every 10-15 seconds or so), so I would prefer not to have a driver attaching to that card.
I used to disable that by changing the driver source, but I would prefer to know some more user friendly way (if there is any).
Why am I asking this is that I have snd_hda attaching to some sound module on my graphic card, and although I am not using that for anything I get lots of messages like
Code:
pcm3: feeder_chain(): failed to acquire hw matrix [0x00800400]
pcm3: feeder_chain(): failed to acquire hw matrix [0x00800400]
I used to disable that by changing the driver source, but I would prefer to know some more user friendly way (if there is any).