Skip to content

Commit 30cf465

Browse files
committed
drivers: gpio: intel: Fix Pad IO Termination values
Swap PAD_CFG1_IOSTERM_PU and PAD_CFG1_IOSTERM_PD values. Signed-off-by: S Swetha <s.swetha@intel.com>
1 parent b5c2807 commit 30cf465

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpio/gpio_intel.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
#define PAD_CFG1_IOSTERM_MASK (0x03 << PAD_CFG1_IOSTERM_POS)
6969
#define PAD_CFG1_IOSTERM_FUNC (0 << PAD_CFG1_IOSTERM_POS)
7070
#define PAD_CFG1_IOSTERM_DISPUD (1 << PAD_CFG1_IOSTERM_POS)
71-
#define PAD_CFG1_IOSTERM_PU (2 << PAD_CFG1_IOSTERM_POS)
72-
#define PAD_CFG1_IOSTERM_PD (3 << PAD_CFG1_IOSTERM_POS)
71+
#define PAD_CFG1_IOSTERM_PD (2 << PAD_CFG1_IOSTERM_POS)
72+
#define PAD_CFG1_IOSTERM_PU (3 << PAD_CFG1_IOSTERM_POS)
7373

7474
#define PAD_CFG1_TERM_POS 10
7575
#define PAD_CFG1_TERM_MASK (0x0F << PAD_CFG1_TERM_POS)

0 commit comments

Comments
 (0)