diff mbox series

x86/IO-APIC: correct RET polarity comment

Message ID 072a4e90-78dd-47ff-9890-ba377e0a2b66@suse.com (mailing list archive)
State New
Headers show
Series x86/IO-APIC: correct RET polarity comment | expand

Commit Message

Jan Beulich Dec. 19, 2023, 1:49 p.m. UTC
The comment there was the wrong way round, documentation clearly states
that 0 is high and 1 is low.

Signed-off-by: Jan Beulich <jbeulich@suse.com>

Comments

Jan Beulich Dec. 19, 2023, 1:51 p.m. UTC | #1
On 19.12.2023 14:49, Jan Beulich wrote:
> The comment there was the wrong way round, documentation clearly states
> that 0 is high and 1 is low.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

And of course in the title s/RET/RTE/.

Jan

> --- a/xen/arch/x86/include/asm/io_apic.h
> +++ b/xen/arch/x86/include/asm/io_apic.h
> @@ -101,7 +101,7 @@ struct IO_APIC_route_entry {
>                                             */
>              unsigned int dest_mode:1;     /* 0: physical, 1: logical */
>              unsigned int delivery_status:1;
> -            unsigned int polarity:1;      /* 0: low, 1: high */
> +            unsigned int polarity:1;      /* 0: high, 1: low */
>              unsigned int irr:1;
>              unsigned int trigger:1;       /* 0: edge, 1: level */
>              unsigned int mask:1;          /* 0: enabled, 1: disabled */
Andrew Cooper Dec. 19, 2023, 2:01 p.m. UTC | #2
On 19/12/2023 1:51 pm, Jan Beulich wrote:
> On 19.12.2023 14:49, Jan Beulich wrote:
>> The comment there was the wrong way round, documentation clearly states
>> that 0 is high and 1 is low.
>>
>> Signed-off-by: Jan Beulich <jbeulich@suse.com>
> And of course in the title s/RET/RTE/.

Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
diff mbox series

Patch

--- a/xen/arch/x86/include/asm/io_apic.h
+++ b/xen/arch/x86/include/asm/io_apic.h
@@ -101,7 +101,7 @@  struct IO_APIC_route_entry {
                                            */
             unsigned int dest_mode:1;     /* 0: physical, 1: logical */
             unsigned int delivery_status:1;
-            unsigned int polarity:1;      /* 0: low, 1: high */
+            unsigned int polarity:1;      /* 0: high, 1: low */
             unsigned int irr:1;
             unsigned int trigger:1;       /* 0: edge, 1: level */
             unsigned int mask:1;          /* 0: enabled, 1: disabled */