Print this page
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/atge/atge_main.c
          +++ new/usr/src/uts/common/io/atge/atge_main.c
↓ open down ↓ 2900 lines elided ↑ open up ↑
2901 2901   * Module linkage information.
2902 2902   */
2903 2903  static  struct  modldrv atge_modldrv = {
2904 2904          &mod_driverops,                         /* Type of Module */
2905 2905          "Atheros/Attansic Gb Ethernet",         /* Description */
2906 2906          &atge_devops                            /* drv_dev_ops */
2907 2907  };
2908 2908  
2909 2909  static  struct  modlinkage atge_modlinkage = {
2910 2910          MODREV_1,                       /* ml_rev */
2911      -        (void *)&atge_modldrv,
2912      -        NULL
     2911 +        { (void *)&atge_modldrv, NULL }
2913 2912  };
2914 2913  
2915 2914  /*
2916 2915   * DDI Entry points.
2917 2916   */
2918 2917  int
2919 2918  _init(void)
2920 2919  {
2921 2920          int     r;
2922 2921          mac_init_ops(&atge_devops, "atge");
↓ open down ↓ 24 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX