Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Blackfin: dpmc: do not save/restore EVT0/EVT1/EVT4 when hibernating

EVT0 is for emulation, EVT1 is for reset, and EVT4 is the "global int
disable" region. None of these are used by software (or even hardware),
so don't bother saving/restoring them when we hibernate since nothing
ever uses these in Linux (the only thing they would be useful for is
core-memory scratch, but that's just crazy talk).

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

-6
-6
arch/blackfin/mach-common/dpmc_modes.S
··· 464 464 PM_PUSH(ICPLB_DATA13) 465 465 PM_PUSH(ICPLB_DATA14) 466 466 PM_PUSH(ICPLB_DATA15) 467 - PM_PUSH(EVT0) 468 - PM_PUSH(EVT1) 469 467 PM_PUSH(EVT2) 470 468 PM_PUSH(EVT3) 471 - PM_PUSH(EVT4) 472 469 PM_PUSH(EVT5) 473 470 PM_PUSH(EVT6) 474 471 PM_PUSH(EVT7) ··· 619 622 PM_POP(EVT7) 620 623 PM_POP(EVT6) 621 624 PM_POP(EVT5) 622 - PM_POP(EVT4) 623 625 PM_POP(EVT3) 624 626 PM_POP(EVT2) 625 - PM_POP(EVT1) 626 - PM_POP(EVT0) 627 627 PM_POP(ICPLB_DATA15) 628 628 PM_POP(ICPLB_DATA14) 629 629 PM_POP(ICPLB_DATA13)