stdio/device: rework function naming conventionSo far the console API uses the following naming convention: ======Extract====== typedef struct device_t; int device_register (device_t * dev);
stdio/device: rework function naming conventionSo far the console API uses the following naming convention: ======Extract====== typedef struct device_t; int device_register (device_t * dev); int devices_init (void); int device_deregister(char *devname); struct list_head* device_get_list(void); device_t* device_get_by_name(char* name); device_t* device_clone(device_t *dev); =======which is too generic and confusing.Instead of using device_XX and device_t we change thisinto stdio_XX and stdio_devThis will also allow to add later a generic device mechanism in orderto have support for multiple devices and driver instances.Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>Edited commit message.Signed-off-by: Wolfgang Denk <wd@denx.de>
show more ...
Rename common ns16550 constants with UART_ prefix to prevent conflictsFix problems introduced in commit7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardwarediagnosis functions for inka4
Rename common ns16550 constants with UART_ prefix to prevent conflictsFix problems introduced in commit7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardwarediagnosis functions for inka4x0] which redefined MSR_RI which isalready used on PowerPC systems.Also eliminate redundant definitions in ps2mult.h. More cleanup willbe needed for other redundant occurrences though.Signed-off-by: Detlev Zundel <dzu@denx.de>
rename CFG_ macros to CONFIG_SYSSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
drivers/input: Move conditional compilation to MakefileSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Code cleanup: fix old style assignment ambiguities like "=-" etc.Signed-off-by: Wolfgang Denk <wd@denx.de>
TQM8548: Basic support for the TQM8548 modulesThis patch adds basic support for the TQM8548 module from TQ-Components(http://www.tqc.de/) including DDR2 SDRAM initialisation and support foreTSEC
TQM8548: Basic support for the TQM8548 modulesThis patch adds basic support for the TQM8548 module from TQ-Components(http://www.tqc.de/) including DDR2 SDRAM initialisation and support foreTSEC 3 and 4Furthermore Flash buffer write has been enabled to speed up output tothe Flash by approx. a factor of 10.Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Big white-space cleanup.This commit gets rid of a huge amount of silly white-space issues.Especially, all sequences of SPACEs followed by TAB characters getremoved (unless they appear in print st
Big white-space cleanup.This commit gets rid of a huge amount of silly white-space issues.Especially, all sequences of SPACEs followed by TAB characters getremoved (unless they appear in print statements).Also remove all embedded "vim:" and "vi:" statements which hideindentation problems.Signed-off-by: Wolfgang Denk <wd@denx.de>
drivers/input : move input drivers to drivers/inputSigned-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1234567