Skip to content
Snippets Groups Projects
  1. Oct 14, 2009
  2. Oct 11, 2009
  3. Sep 04, 2009
  4. Sep 02, 2009
  5. Aug 23, 2009
  6. Jul 24, 2009
  7. Jul 20, 2009
  8. Jul 19, 2009
  9. Jul 17, 2009
    • Jean-Christophe PLAGNIOL-VILLARD's avatar
      stdio/device: rework function naming convention · 52cb4d4f
      Jean-Christophe PLAGNIOL-VILLARD authored
      
      So 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 this
      into stdio_XX and stdio_dev
      
      This will also allow to add later a generic device mechanism in order
      to have support for multiple devices and driver instances.
      
      Signed-off-by: default avatarJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
      
      Edited commit message.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      52cb4d4f
  10. Jul 10, 2009
  11. Jun 15, 2009
    • Mike Frysinger's avatar
      Blackfin: unify u-boot linker scripts · 9ff67e5e
      Mike Frysinger authored
      
      All the Blackfin linker scripts were duplicated across the board dirs with
      no difference save from the semi-often used ENV_IS_EMBEDDED option.  So
      unify all of them in the lib_blackfin/ dir and for the few boards that
      need to embedded the environment directly, add a LDS_BOARD_TEXT define for
      them to customize via their board config file.  This is much simpler than
      forcing them to duplicate the rest of the linker script.
      
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      9ff67e5e
  12. Jun 12, 2009
    • Stefan Roese's avatar
      lib_arch/board.c: Move malloc initialization before flash_init() · c790b04d
      Stefan Roese authored
      
      This patch moves the malloc initialization before calling flash_init().
      Upcoming changes to the NOR FLASH common CFI driver with optional
      MTD infrastructure and MTD concatenation support will call malloc().
      And nothing really speaks against enabling malloc just a little earlier
      in the boot stage. Some architectures already enable malloc before
      calling flash_init() so they don't need any changes here.
      
      Signed-off-by: default avatarStefan Roese <sr@denx.de>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Mike Frysinger <vapier@gentoo.org>
      Cc: Scott McNutt <smcnutt@psyent.com>
      Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
      Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
      Cc: Daniel Hellstrom <daniel@gaisler.com>
      Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
      Cc: John Rigby <jcrigby@gmail.com>
      c790b04d
  13. Mar 23, 2009
  14. Mar 20, 2009
  15. Feb 02, 2009
  16. Jan 28, 2009
  17. Jan 23, 2009
Loading