Changeset 0d23caa in rtems


Ignore:
Timestamp:
07/07/11 22:15:00 (12 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
06a36cd1
Parents:
3837e536
Message:

2011-07-07 Joel Sherrill <joel.sherrill@…>

  • libblock/src/nvdisk-sram.c, libi2c/libi2c.c, libmisc/shell/main_msdosfmt.c: Eliminate use of GNU old-style field designator extension as recommended by clang.
Location:
cpukit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r3837e536 r0d23caa  
     12011-07-07      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * libblock/src/nvdisk-sram.c, libi2c/libi2c.c,
     4        libmisc/shell/main_msdosfmt.c: Eliminate use of GNU old-style field
     5        designator extension as recommended by clang.
     6
    172011-07-08      Sebastian Huber <sebastian.huber@embedded-brains.de>
    28
  • cpukit/libblock/src/nvdisk-sram.c

    r3837e536 r0d23caa  
    6363const rtems_nvdisk_driver_handlers rtems_nvdisk_sram_handlers =
    6464{
    65   read:  rtems_nvdisk_sram_read,
    66   write: rtems_nvdisk_sram_write,
    67   verify: rtems_nvdisk_sram_verify
     65  .read   = rtems_nvdisk_sram_read,
     66  .write  = rtems_nvdisk_sram_write,
     67  .verify = rtems_nvdisk_sram_verify
    6868};
  • cpukit/libi2c/libi2c.c

    r3837e536 r0d23caa  
    339339/* Our ops just dispatch to the registered drivers */
    340340const rtems_driver_address_table rtems_libi2c_io_ops = {
    341   initialization_entry:  rtems_i2c_init,
    342   open_entry:            rtems_i2c_open,
    343   close_entry:           rtems_i2c_close,
    344   read_entry:            rtems_i2c_read,
    345   write_entry:           rtems_i2c_write,
    346   control_entry:         rtems_i2c_ioctl,
     341  .initialization_entry =  rtems_i2c_init,
     342  .open_entry =            rtems_i2c_open,
     343  .close_entry =           rtems_i2c_close,
     344  .read_entry =            rtems_i2c_read,
     345  .write_entry =           rtems_i2c_write,
     346  .control_entry =         rtems_i2c_ioctl,
    347347};
    348348
  • cpukit/libmisc/shell/main_msdosfmt.c

    r3837e536 r0d23caa  
    3131{
    3232  msdos_format_request_param_t rqdata = {
    33     OEMName:             "RTEMS",
    34     VolLabel:            "RTEMSDisk",
    35     sectors_per_cluster: 0,
    36     fat_num:             0,
    37     files_per_root_dir:  0,
    38     fattype:             MSDOS_FMT_FATANY,
    39     media:               0,
    40     quick_format:        TRUE,
    41     cluster_align:       0,
    42     info_level:          0
     33    .OEMName =             "RTEMS",
     34    .VolLabel =            "RTEMSDisk",
     35    .sectors_per_cluster = 0,
     36    .fat_num =             0,
     37    .files_per_root_dir =  0,
     38    .fattype =             MSDOS_FMT_FATANY,
     39    .media =               0,
     40    .quick_format =        TRUE,
     41    .cluster_align =       0,
     42    .info_level =          0
    4343  };
    4444
Note: See TracChangeset for help on using the changeset viewer.