Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45604 )
Change subject: include/azalia: Add new macro to configure pins as NC ......................................................................
include/azalia: Add new macro to configure pins as NC
Change-Id: I740d0d756599688165458a9c6e925d5d94754bb2 Signed-off-by: Felix Singer felix.singer@secunet.com --- M src/include/device/azalia_device.h 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/45604/1
diff --git a/src/include/device/azalia_device.h b/src/include/device/azalia_device.h index d510123..f7dfd71 100644 --- a/src/include/device/azalia_device.h +++ b/src/include/device/azalia_device.h @@ -138,4 +138,6 @@ (((codec) << 28) | (0x01722 << 8) | (((val) >> 16) & 0xff)), \ (((codec) << 28) | (0x01723 << 8) | (((val) >> 24) & 0xff))
+#define PIN_CFG_NC(n) (0x411111f0 | (n & 0xf)) + #endif /* DEVICE_AZALIA_H */