Deleted Added
full compact
evsci.c (241973) evsci.c (245582)
1/*******************************************************************************
2 *
3 * Module Name: evsci - System Control Interrupt configuration and
4 * legacy to ACPI mode state transition functions
5 *
6 ******************************************************************************/
7
8/*
1/*******************************************************************************
2 *
3 * Module Name: evsci - System Control Interrupt configuration and
4 * legacy to ACPI mode state transition functions
5 *
6 ******************************************************************************/
7
8/*
9 * Copyright (C) 2000 - 2012, Intel Corp.
9 * Copyright (C) 2000 - 2013, Intel Corp.
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.

--- 78 unchanged lines hidden (view full) ---

96
97 /*
98 * General Purpose Events:
99 * Check for and dispatch any GPEs that have occurred
100 */
101 InterruptHandled |= AcpiEvGpeDetect (GpeXruptList);
102
103 AcpiSciCount++;
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.

--- 78 unchanged lines hidden (view full) ---

96
97 /*
98 * General Purpose Events:
99 * Check for and dispatch any GPEs that have occurred
100 */
101 InterruptHandled |= AcpiEvGpeDetect (GpeXruptList);
102
103 AcpiSciCount++;
104 return_UINT32 (InterruptHandled);
104 return_VALUE (InterruptHandled);
105}
106
107
108/*******************************************************************************
109 *
110 * FUNCTION: AcpiEvGpeXruptHandler
111 *
112 * PARAMETERS: Context - Calling Context

--- 19 unchanged lines hidden (view full) ---

132 * We are guaranteed by the ACPI CA initialization/shutdown code that
133 * if this interrupt handler is installed, ACPI is enabled.
134 */
135
136 /* GPEs: Check for and dispatch any GPEs that have occurred */
137
138 InterruptHandled |= AcpiEvGpeDetect (GpeXruptList);
139
105}
106
107
108/*******************************************************************************
109 *
110 * FUNCTION: AcpiEvGpeXruptHandler
111 *
112 * PARAMETERS: Context - Calling Context

--- 19 unchanged lines hidden (view full) ---

132 * We are guaranteed by the ACPI CA initialization/shutdown code that
133 * if this interrupt handler is installed, ACPI is enabled.
134 */
135
136 /* GPEs: Check for and dispatch any GPEs that have occurred */
137
138 InterruptHandled |= AcpiEvGpeDetect (GpeXruptList);
139
140 return_UINT32 (InterruptHandled);
140 return_VALUE (InterruptHandled);
141}
142
143
144/******************************************************************************
145 *
146 * FUNCTION: AcpiEvInstallSciHandler
147 *
148 * PARAMETERS: none

--- 61 unchanged lines hidden ---
141}
142
143
144/******************************************************************************
145 *
146 * FUNCTION: AcpiEvInstallSciHandler
147 *
148 * PARAMETERS: none

--- 61 unchanged lines hidden ---