03 Feb, 2010

1 commit


01 Dec, 2009

1 commit

  • There are a number of statements of the form A, B or A, B, C where
    the numbers A,B,C are not consecutive. However, referencing [1] it
    is the correct thing to replace these with A-B or A-C as apropriate.

    [1] http://www.copyrightservice.co.uk/copyright/p03_copyright_notices
    section 4iii 'Year of publication'

    Signed-off-by: Ben Dooks
    Signed-off-by: Simtec Linux Team
    Signed-off-by: Ben Dooks

    Ben Dooks
     

31 Jul, 2009

1 commit

  • During kernel build process, the following warning was found:

    WARNING: drivers/serial/built-in.o(.data+0x304): Section mismatch in reference from
    the variable s3c2440_serial_drv to the function .devexit.text:s3c24xx_serial_remove()
    The variable s3c2440_serial_drv references the function __devexit s3c24xx_serial_remove()
    If the reference is valid then annotate the variable with
    __exit* (see linux/init.h) or name the variable:
    *driver, *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console,

    The same warning happened for s3c241x platform. We rename variables to avoid
    these warnings. These changes also apply to s3c2400 & s3c24a0 for consistency.

    Signed-off-by: Ramax Lo
    Signed-off-by: Ben Dooks

    Ramax Lo
     

23 Jun, 2009

1 commit


08 Oct, 2008

1 commit

  • First move of items out of include/asm-arm/plat-s3c* to their
    new homes under arch/arm/plat-s3c/include/plat and
    arch/arm/plat-s3c24xx/include/plat directories.

    Note, we have to create a dummy arch/arm/plat-s3c/Makefile to
    allow us to add arch/arm/plat-s3c/include/plat to the path.

    Signed-off-by: Ben Dooks

    Ben Dooks
     

07 Aug, 2008

2 commits


03 Jul, 2008

1 commit

  • The S3C2410 serial driver in drivers/serial/s3c2410.c has been
    growing bigger with the addition of more variants of this hardware
    with the growing Samsung SoCs range. As such, it would be
    easier to split this code up into a core and per-cpu drivers to
    make driver addition easier, and the core smaller.

    Signed-off-by: Ben Dooks

    Ben Dooks