
I created a Automator script that unloads/loads the driver:
----snip----
on run {input, parameters}
do shell script "sudo kextunload /System/Library/Extensions/AppleFWAudio.kext" with administrator privileges
do shell script "sudo kextload /System/Library/Extensions/AppleFWAudio.kext" with administrator privileges
return input
end run
----snip----
Hope this helps someone experiencing the same problems.
/T