@@ -49,6 +49,7 @@ struct acpi_rsconvert_info *acpi_gbl_set_resource_dispatch[] = {
4949 acpi_rs_convert_pin_group , /* 0x16, ACPI_RESOURCE_TYPE_PIN_GROUP */
5050 acpi_rs_convert_pin_group_function , /* 0x17, ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
5151 acpi_rs_convert_pin_group_config , /* 0x18, ACPI_RESOURCE_TYPE_PIN_GROUP_CONFIG */
52+ acpi_rs_convert_clock_input , /* 0x19, ACPI_RESOURCE_TYPE_CLOCK_INPUT */
5253};
5354
5455/* Dispatch tables for AML-to-resource (Get Resource) conversion functions */
@@ -94,6 +95,7 @@ struct acpi_rsconvert_info *acpi_gbl_get_resource_dispatch[] = {
9495 acpi_rs_convert_pin_group , /* 0x10, ACPI_RESOURCE_NAME_PIN_GROUP */
9596 acpi_rs_convert_pin_group_function , /* 0x11, ACPI_RESOURCE_NAME_PIN_GROUP_FUNCTION */
9697 acpi_rs_convert_pin_group_config , /* 0x12, ACPI_RESOURCE_NAME_PIN_GROUP_CONFIG */
98+ acpi_rs_convert_clock_input , /* 0x13, ACPI_RESOURCE_NAME_CLOCK_INPUT */
9799};
98100
99101/* Subtype table for serial_bus -- I2C, SPI, UART, and CSI2 */
@@ -136,6 +138,7 @@ struct acpi_rsdump_info *acpi_gbl_dump_resource_dispatch[] = {
136138 acpi_rs_dump_pin_group , /* ACPI_RESOURCE_TYPE_PIN_GROUP */
137139 acpi_rs_dump_pin_group_function , /* ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
138140 acpi_rs_dump_pin_group_config , /* ACPI_RESOURCE_TYPE_PIN_GROUP_CONFIG */
141+ acpi_rs_dump_clock_input , /* ACPI_RESOURCE_TYPE_CLOCK_INPUT */
139142};
140143
141144struct acpi_rsdump_info * acpi_gbl_dump_serial_bus_dispatch [] = {
@@ -178,6 +181,7 @@ const u8 acpi_gbl_aml_resource_sizes[] = {
178181 sizeof (struct aml_resource_pin_group ), /* ACPI_RESOURCE_TYPE_PIN_GROUP */
179182 sizeof (struct aml_resource_pin_group_function ), /* ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
180183 sizeof (struct aml_resource_pin_group_config ), /* ACPI_RESOURCE_TYPE_PIN_GROUP_CONFIG */
184+ sizeof (struct aml_resource_clock_input ), /* ACPI_RESOURCE_TYPE_CLOCK_INPUT */
181185};
182186
183187const u8 acpi_gbl_resource_struct_sizes [] = {
@@ -221,6 +225,7 @@ const u8 acpi_gbl_resource_struct_sizes[] = {
221225 ACPI_RS_SIZE (struct acpi_resource_pin_group ),
222226 ACPI_RS_SIZE (struct acpi_resource_pin_group_function ),
223227 ACPI_RS_SIZE (struct acpi_resource_pin_group_config ),
228+ ACPI_RS_SIZE (struct acpi_resource_clock_input ),
224229};
225230
226231const u8 acpi_gbl_aml_resource_serial_bus_sizes [] = {
0 commit comments