summaryrefslogtreecommitdiff
path: root/Omap35xxPkg/Gpio/Gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'Omap35xxPkg/Gpio/Gpio.c')
-rw-r--r--Omap35xxPkg/Gpio/Gpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Omap35xxPkg/Gpio/Gpio.c b/Omap35xxPkg/Gpio/Gpio.c
index 107c93916..83bbe5b11 100644
--- a/Omap35xxPkg/Gpio/Gpio.c
+++ b/Omap35xxPkg/Gpio/Gpio.c
@@ -43,7 +43,7 @@ Get (
DataInRegister = GpioBase(Port) + GPIO_DATAIN;
- if (MmioRead32(DataInRegister) & GPIO_DATAIN_MASK(Pin)) {
+ if (MmioRead32 (DataInRegister) & GPIO_DATAIN_MASK(Pin)) {
*Value = 1;
} else {
*Value = 0;