From 6911d300ace36e0e90f497a7375e8eeed2ead977 Mon Sep 17 00:00:00 2001 From: kettenis Date: Tue, 24 Aug 2021 16:18:50 +0000 Subject: [PATCH] Fix ping group offsets. ok jcs@ --- sys/dev/acpi/pchgpio.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sys/dev/acpi/pchgpio.c b/sys/dev/acpi/pchgpio.c index fb0fd32ce52..5d2a6fcd2b6 100644 --- a/sys/dev/acpi/pchgpio.c +++ b/sys/dev/acpi/pchgpio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchgpio.c,v 1.3 2021/08/10 12:19:06 jcs Exp $ */ +/* $OpenBSD: pchgpio.c,v 1.4 2021/08/24 16:18:50 kettenis Exp $ */ /* * Copyright (c) 2020 Mark Kettenis * Copyright (c) 2020 James Hastings @@ -111,8 +111,8 @@ struct pchgpio_group cnl_lp_groups[] = /* Community 1 */ { 1, 0, 68, 92, 0, 96 }, /* GPP_D */ - { 1, 1, 93, 116, 24, 128 }, /* GPP_F */ - { 1, 2, 117, 140, 48, 160 }, /* GPP_H */ + { 1, 1, 93, 116, 25, 128 }, /* GPP_F */ + { 1, 2, 117, 140, 49, 160 }, /* GPP_H */ /* Community 4 */ { 2, 0, 181, 204, 0, 256 }, /* GPP_C */ @@ -138,14 +138,14 @@ struct pchgpio_group tgl_lp_groups[] = /* Community 1 */ { 1, 0, 67, 74, 0, 96 }, /* GPP_S */ - { 1, 1, 75, 98, 24, 128 }, /* GPP_H */ - { 1, 2, 99, 119, 45, 160 }, /* GPP_D */ - { 1, 3, 120, 143, 69, 192 }, /* GPP_U */ + { 1, 1, 75, 98, 8, 128 }, /* GPP_H */ + { 1, 2, 99, 119, 32, 160 }, /* GPP_D */ + { 1, 3, 120, 143, 53, 192 }, /* GPP_U */ /* Community 4 */ { 2, 0, 171, 194, 0, 256 }, /* GPP_C */ - { 2, 1, 195, 219, 25, 288 }, /* GPP_F */ - { 2, 3, 226, 250, 51, 320 }, /* GPP_E */ + { 2, 1, 195, 219, 24, 288 }, /* GPP_F */ + { 2, 3, 226, 250, 55, 320 }, /* GPP_E */ /* Community 5 */ { 3, 0, 260, 267, 0, 352 }, /* GPP_R */ -- 2.20.1