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

Configure Feed

Select the types of activity you want to include in your feed.

drm/amd/display: Correct enum typo

This commit just replaces dc_interrupt_po*r*larity with its correct
name, which is dc_interrupt_polarity.

Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Acked-by: Roman Li <roman.li@amd.com>
Signed-off-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Rodrigo Siqueira and committed by
Alex Deucher
0d93f395 fc0479ac

+3 -3
+3 -3
drivers/gpu/drm/amd/display/dc/irq_types.h
··· 178 178 INTERRUPT_CONTEXT_NUMBER 179 179 }; 180 180 181 - enum dc_interrupt_porlarity { 181 + enum dc_interrupt_polarity { 182 182 INTERRUPT_POLARITY_DEFAULT = 0, 183 183 INTERRUPT_POLARITY_LOW = INTERRUPT_POLARITY_DEFAULT, 184 184 INTERRUPT_POLARITY_HIGH, ··· 199 199 /* The polarity *change* which will trigger an interrupt. 200 200 * If 'requested_polarity == INTERRUPT_POLARITY_BOTH', then 201 201 * 'current_polarity' must be initialised. */ 202 - enum dc_interrupt_porlarity requested_polarity; 202 + enum dc_interrupt_polarity requested_polarity; 203 203 /* If 'requested_polarity == INTERRUPT_POLARITY_BOTH', 204 204 * 'current_polarity' should contain the current state, which means 205 205 * the interrupt will be triggered when state changes from what is, 206 206 * in 'current_polarity'. */ 207 - enum dc_interrupt_porlarity current_polarity; 207 + enum dc_interrupt_polarity current_polarity; 208 208 enum dc_irq_source irq_source; 209 209 enum dc_interrupt_context int_context; 210 210 };