Remove some whitespace at the end of the line

This commit is contained in:
Gregory Nutt 2016-03-05 09:18:30 -06:00
parent 56eebbbfe1
commit dd27fce4eb
3 changed files with 5 additions and 5 deletions

View File

@ -498,7 +498,7 @@
#define IMX_EIM_NSECTIONS _NSECTIONS(IMX_EIM_SECSIZE)
#define IMX_MMDCDDR_NSECTIONS _NSECTIONS(IMX_MMDCDDR_SECSIZE)
/* Section MMU Flags
/* Section MMU Flags
*
* SDRAM is a special case because it requires non-cached access of its
* initial configuration, then cached access thereafter.

View File

@ -198,7 +198,7 @@ void imx_gpio_write(gpio_pinset_t pinset, bool value)
irqstate_t flags;
int port = (pinset & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT;
int pin = (pinset & GPIO_PIN_MASK) >> GPIO_PIN_SHIFT;
flags = enter_critical_section();
imx_gpio_setoutput(port, pin, value);
leave_critical_section(flags);
@ -218,7 +218,7 @@ bool imx_gpio_read(gpio_pinset_t pinset)
int port = (pinset & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT;
int pin = (pinset & GPIO_PIN_MASK) >> GPIO_PIN_SHIFT;
bool value;
flags = enter_critical_section();
value = imx_gpio_getinput(port, pin);
leave_critical_section(flags);

View File

@ -110,7 +110,7 @@
#define GPIO_SLEW_SLOW (0) /* Bit 12: 0=Slow Slew Rate */
#define GPIO_SLEW_FAST (1 << 12) /* Bit 12: 1=Fast Slew Rate */
/* Output Speed:
*
* GPIO OUTPUT ...1 .... .... SS.. .... ....
@ -129,7 +129,7 @@
#define GPIO_OUTPUT_ZERO (0) /* Bit 9: 0=Initial output is low */
#define GPIO_OUTPUT_ONE (1 << 9) /* Bit 9: 1=Initial output is high */
/* Input Schmitt Trigger:
*
* GPIO INPUT ...0 .... .... ...T .... ....