mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
km/common: fix coding style issues in generic header
Signed-off-by: Holger Brunck <holger.brunck@keymile.com> Acked-by: Heiko Schocher <hs@denx.de> cc: Wolfgang Denk <wd@denx.de> cc: Detlev Zundel <dzu@denx.de> cc: Valentin Longchamp <valentin.longchamp@keymile.com> Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
This commit is contained in:
parent
a9417ce74a
commit
499b1a4d33
2 changed files with 7 additions and 7 deletions
|
@ -86,7 +86,7 @@
|
|||
#define CONFIG_SYS_HZ 1000 /* decr. freq: 1 ms ticks */
|
||||
|
||||
#define CONFIG_BAUDRATE 115200
|
||||
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
|
||||
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
|
||||
|
||||
#define CONFIG_LOADS_ECHO
|
||||
#define CONFIG_SYS_LOADS_BAUD_CHANGE
|
||||
|
@ -451,6 +451,6 @@
|
|||
""
|
||||
#endif /* CONFIG_KM_DEF_ENV */
|
||||
|
||||
#define CONFIG_VERSION_VARIABLE /* include version env variable */
|
||||
#define CONFIG_VERSION_VARIABLE /* include version env variable */
|
||||
|
||||
#endif /* __CONFIG_KEYMILE_H */
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
#define CONFIG_BOOTMAPSZ (8 << 20) /* Initial Memmap for Linux */
|
||||
#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
|
||||
#define CONFIG_INITRD_TAG /* enable INITRD tag */
|
||||
#define CONFIG_SETUP_MEMORY_TAGS /* enable memory tag */
|
||||
#define CONFIG_SETUP_MEMORY_TAGS /* enable memory tag */
|
||||
|
||||
/*
|
||||
* Commands configuration
|
||||
|
@ -176,10 +176,10 @@
|
|||
#ifndef __ASSEMBLY__
|
||||
#include <asm/arch-kirkwood/gpio.h>
|
||||
extern void __set_direction(unsigned pin, int high);
|
||||
void set_sda (int state);
|
||||
void set_scl (int state);
|
||||
int get_sda (void);
|
||||
int get_scl (void);
|
||||
void set_sda(int state);
|
||||
void set_scl(int state);
|
||||
int get_sda(void);
|
||||
int get_scl(void);
|
||||
#define KM_KIRKWOOD_SDA_PIN 8
|
||||
#define KM_KIRKWOOD_SCL_PIN 9
|
||||
#define KM_KIRKWOOD_ENV_WP 38
|
||||
|
|
Loading…
Reference in a new issue