I don't know if it's the cause of your problem, but you can stop the constant calls to CRDA by actually installing it.
The kernel is making those calls to CRDA but the agent is not installed by default, so it fails over and over. Use apt-get to install "crda".
It also seems to shave about ~7 seconds off boot time, since it's not repeatedly trying to update and failing. So rather than all those repeated calls when booting if you look in dmesg you'll only have two lines.
[ 15.007101] cfg80211: Calling CRDA to update world regulatory domain
[ 15.285557] cfg80211: World regulatory domain updated:
And that's the end of that, you won't hear from it again.
Information from the CRDA package:
Description: wireless Central Regulatory Domain Agent
This package provides a Central Regulatory Domain Agent (CRDA) to be used by
the Linux kernel cfg80211 wireless subsystem to query and apply the regulatory
domain settings wireless devices may operate within for a given location.
Good Luck !!