Skip to content

Commit 6a3f890

Browse files
noglitchclaudiubeznea
authored andcommitted
ARM: at91: pm: fix .uhp_udp_mask specification for current SoCs
All SoCs using this structure field .uhp_udp_mask in configuration index 4 don't have the bit 7 specified: sam9x60 nor sam9x75. Remove this bit from the mask definition to match register layout. This mask is used in function at91_pm_verify_clocks(). Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com> Link: https://lore.kernel.org/r/20250827145427.46819-2-nicolas.ferre@microchip.com Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
1 parent 8f5ae30 commit 6a3f890

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • arch/arm/mach-at91

arch/arm/mach-at91/pm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1364,7 +1364,7 @@ static const struct pmc_info pmc_infos[] __initconst = {
13641364
.version = AT91_PMC_V1,
13651365
},
13661366
{
1367-
.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP,
1367+
.uhp_udp_mask = AT91SAM926x_PMC_UHP,
13681368
.mckr = 0x28,
13691369
.version = AT91_PMC_V2,
13701370
},

0 commit comments

Comments
 (0)