static struct ccu_reset_map sun8i_a83t_de2_resets[] = {
        [RST_MIXER0]    = { 0x08, BIT(0) },
        /*
-        * For A83T, H3 and R40, mixer1 reset line is shared with wb, so
-        * only RST_WB is exported here.
-        * For V3s there's just no mixer1, so it also shares this struct.
+        * Mixer1 reset line is shared with wb, so only RST_WB is
+        * exported here.
+        */
+       [RST_WB]        = { 0x08, BIT(2) },
+};
+
+static struct ccu_reset_map sun8i_h3_de2_resets[] = {
+       [RST_MIXER0]    = { 0x08, BIT(0) },
+       /*
+        * Mixer1 reset line is shared with wb, so only RST_WB is
+        * exported here.
+        * V3s doesn't have mixer1, so it also shares this struct.
         */
        [RST_WB]        = { 0x08, BIT(2) },
 };
 
        .hw_clks        = &sun8i_h3_de2_hw_clks,
 
-       .resets         = sun8i_a83t_de2_resets,
-       .num_resets     = ARRAY_SIZE(sun8i_a83t_de2_resets),
+       .resets         = sun8i_h3_de2_resets,
+       .num_resets     = ARRAY_SIZE(sun8i_h3_de2_resets),
 };
 
 static const struct sunxi_ccu_desc sun50i_a64_de2_clk_desc = {
 
        .hw_clks        = &sun8i_v3s_de2_hw_clks,
 
-       .resets         = sun8i_a83t_de2_resets,
-       .num_resets     = ARRAY_SIZE(sun8i_a83t_de2_resets),
+       .resets         = sun8i_h3_de2_resets,
+       .num_resets     = ARRAY_SIZE(sun8i_h3_de2_resets),
 };
 
 static int sunxi_de2_clk_probe(struct platform_device *pdev)