The Blackfin C ABI says we do not need to save/restore R0-R3 and P0-P2
as they are available as scratch registers.  So don't bother.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
 .section .l1.text
 
 ENTRY(_sleep_mode)
-       [--SP] = ( R7:0, P5:0 );
-       [--SP] =  RETS;
+       [--SP] = (R7:4, P5:3);
+       [--SP] = RETS;
 
        call _set_sic_iwr;
 
        call _test_pll_locked;
 
        RETS = [SP++];
-       ( R7:0, P5:0 ) = [SP++];
+       (R7:4, P5:3) = [SP++];
        RTS;
 ENDPROC(_sleep_mode)
 
 ENDPROC(_hibernate_mode)
 
 ENTRY(_sleep_deeper)
-       [--SP] = ( R7:0, P5:0 );
-       [--SP] =  RETS;
+       [--SP] = (R7:4, P5:3);
+       [--SP] = RETS;
 
        CLI R4;
 
        STI R4;
 
        RETS = [SP++];
-       ( R7:0, P5:0 ) = [SP++];
+       (R7:4, P5:3) = [SP++];
        RTS;
 ENDPROC(_sleep_deeper)