Are you sure you downloaded the correct drivers from Focusrite? This is what is posted on Microsofts site about that error. If so then I would try a USB 2 port. Seems the issue was with USB 3. Always use the same port you used when installing the drivers so f you swap to a USB 2 port, re install the drivers.
Cause
The most common cause of this bug check is when a file system or driver has a mismatched sequence of calls to disable and re-enable APCs. The key data item is the
Thread->
CombinedApcDisable field. The
CombinedApcDisable field consists of two separate 16-bit fields:
SpecialApcDisable and
KernelApcDisable. A negative value of either field indicates that a driver has disabled special or normal APCs (respectively) without re-enabling them. A positive value indicates that a driver has enabled special or normal APCs too many times.
Remarks
This is a kernel internal error. This error occurs on exit from a system call. A possible cause for this bug check is when a file system or driver has a mismatched sequence of system calls to enter or leave guarded or critical regions. For example, each call to
KeEnterCriticalRegion must have a matching call to
KeLeaveCriticalRegion. If you are developing a driver, you can use
Static Driver Verifier, a static analysis tool available in the Windows Driver Kit, to detect problems in your code before you ship your driver. Run Static Driver Verifier with the
CriticalRegions rule to verify that your source code uses these system calls in correct sequence.