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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/i40e/i40e_main.c
          +++ new/usr/src/uts/common/io/i40e/i40e_main.c
↓ open down ↓ 2829 lines elided ↑ open up ↑
2830 2830  };
2831 2831  
2832 2832  static struct modldrv i40e_modldrv = {
2833 2833          &mod_driverops,
2834 2834          i40e_ident,
2835 2835          &i40e_dev_ops
2836 2836  };
2837 2837  
2838 2838  static struct modlinkage i40e_modlinkage = {
2839 2839          MODREV_1,
2840      -        &i40e_modldrv,
2841      -        NULL
     2840 +        { &i40e_modldrv, NULL }
2842 2841  };
2843 2842  
2844 2843  /*
2845 2844   * Module Initialization Functions.
2846 2845   */
2847 2846  int
2848 2847  _init(void)
2849 2848  {
2850 2849          int status;
2851 2850  
↓ open down ↓ 38 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX