Coding style cleanup; update CHANGELOG

Signed-off-by: Wolfgang Denk <wd@denx.de>
master
Wolfgang Denk 17 years ago
parent 5fc56b907d
commit f15c6515fc
  1. 2392
      CHANGELOG
  2. 1
      board/davinci/dvevm/dvevm.c
  3. 1
      board/omap3/evm/Makefile
  4. 1
      board/omap3/overo/Makefile
  5. 1
      cpu/arm_cortexa8/cpu.c
  6. 1
      doc/README.korat
  7. 1
      drivers/usb/davinci_usb.h
  8. 1
      drivers/usb/musb_core.h
  9. 6
      drivers/usb/usb_ehci_core.c
  10. 1
      include/asm-arm/arch-omap3/omap_gpmc.h

File diff suppressed because it is too large Load Diff

@ -124,4 +124,3 @@ void enable_vbus(void)
i2c_write(IOEXP_I2C_ADDR, 0, 0, &data, 1);
}
#endif

@ -45,4 +45,3 @@ distclean: clean
include $(SRCTREE)/rules.mk
sinclude $(obj).depend

@ -45,4 +45,3 @@ distclean: clean
include $(SRCTREE)/rules.mk
sinclude $(obj).depend

@ -238,4 +238,3 @@ static void cache_flush(void)
{
asm ("mcr p15, 0, %0, c7, c5, 0": :"r" (0));
}

@ -51,7 +51,6 @@ leaving preprocessor symbol "CONFIG_KORAT_PERMANENT" undefined.
2008-02-22, Larry Johnson <lrj@acm.org>
The CompactFlash(R) controller on the Korat board provides a hi-speed USB
interface. This may be connected to either a dedicated port on the on-board
USB controller, or to a USB port on the PowerPC 440EPx processor. The U-Boot

@ -84,4 +84,3 @@ extern int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len);
extern int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len);
extern void enable_vbus(void);
#endif /* __DAVINCI_USB_H__ */

@ -314,4 +314,3 @@ extern inline u16 musb_readw(u32 offset);
extern inline u8 musb_readb(u32 offset);
#endif /* __MUSB_HDRC_DEFS_H__ */

@ -818,8 +818,10 @@ int usb_lowlevel_init(void)
/* Start the host controller. */
cmd = ehci_readl(&hcor->or_usbcmd);
/* Philips, Intel, and maybe others need CMD_RUN before the
* root hub will detect new devices (why?); NEC doesn't */
/*
* Philips, Intel, and maybe others need CMD_RUN before the
* root hub will detect new devices (why?); NEC doesn't
*/
cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
cmd |= CMD_RUN;
ehci_writel(&hcor->or_usbcmd, cmd);

@ -81,4 +81,3 @@
#endif
#endif /* __ASM_ARCH_OMAP_GPMC_H */

Loading…
Cancel
Save