mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
allwinner: clk: sun8i_r: Correct resets
The i2c reset wasn't defined and some bits where wrong, correct them.
This commit is contained in:
parent
45f64a5956
commit
e69181cfc6
1 changed files with 3 additions and 2 deletions
|
|
@ -63,8 +63,9 @@ __FBSDID("$FreeBSD$");
|
|||
static struct aw_ccung_reset ccu_sun8i_r_resets[] = {
|
||||
CCU_RESET(RST_APB0_IR, 0xb0, 1)
|
||||
CCU_RESET(RST_APB0_TIMER, 0xb0, 2)
|
||||
CCU_RESET(RST_APB0_RSB, 0xb0, 4)
|
||||
CCU_RESET(RST_APB0_UART, 0xb0, 6)
|
||||
CCU_RESET(RST_APB0_RSB, 0xb0, 3)
|
||||
CCU_RESET(RST_APB0_UART, 0xb0, 4)
|
||||
CCU_RESET(RST_APB0_I2C, 0xb0, 6)
|
||||
};
|
||||
|
||||
static struct aw_ccung_gate ccu_sun8i_r_gates[] = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue