whitespace fixes. no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2013-01-14 01:34:48 +01:00
parent 5218515508
commit 6967578728
40 changed files with 261 additions and 262 deletions

View File

@ -22,7 +22,8 @@ int setlogcons_main(int argc UNUSED_PARAM, char **argv)
struct { struct {
char fn; char fn;
char subarg; char subarg;
} arg = { 11, /* redirect kernel messages */ } arg = {
11, /* redirect kernel messages */
0 /* to specified console (current as default) */ 0 /* to specified console (current as default) */
}; };

View File

@ -1129,8 +1129,7 @@ static void ife_print(struct interface *ptr)
printf(" "); printf(" ");
if (ptr->map.irq) if (ptr->map.irq)
printf("Interrupt:%d ", ptr->map.irq); printf("Interrupt:%d ", ptr->map.irq);
if (ptr->map.base_addr >= 0x100) /* Only print devices using it for if (ptr->map.base_addr >= 0x100) /* Only print devices using it for I/O maps */
I/O maps */
printf("Base address:0x%lx ", printf("Base address:0x%lx ",
(unsigned long) ptr->map.base_addr); (unsigned long) ptr->map.base_addr);
if (ptr->map.mem_start) { if (ptr->map.mem_start) {

View File

@ -2334,8 +2334,7 @@ set_freq(double freq) /* frequency update */
if (pll_status & STA_PPSTIME) if (pll_status & STA_PPSTIME)
report_event(EVNT_KERN, report_event(EVNT_KERN,
NULL, "PPS disabled"); NULL, "PPS disabled");
ntv.status &= ~(STA_PPSTIME | ntv.status &= ~(STA_PPSTIME | STA_PPSFREQ);
STA_PPSFREQ);
} }
if (sys_leap == LEAP_ADDSECOND) if (sys_leap == LEAP_ADDSECOND)
ntv.status |= STA_INS; ntv.status |= STA_INS;