[BACK]Return to if_bwfm_sdio.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / sdmmc

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/sdmmc/if_bwfm_sdio.c between version 1.23.2.1 and 1.23.2.2

version 1.23.2.1, 2020/12/14 14:38:09 version 1.23.2.2, 2021/04/03 22:28:50
Line 304  static const struct bwfm_sdio_product {
Line 304  static const struct bwfm_sdio_product {
         },          },
 };  };
   
 static const char * const compatible[] = {  static const struct device_compatible_entry compat_data[] = {
         "brcm,bcm4329-fmac",          { .compat = "brcm,bcm4329-fmac" },
         NULL          DEVICE_COMPAT_EOL
 };  };
   
 static int  static int
Line 583  bwfm_fdt_find_phandle(device_t self, dev
Line 583  bwfm_fdt_find_phandle(device_t self, dev
                 phandle = OF_child(OF_finddevice(str));                  phandle = OF_child(OF_finddevice(str));
         }          }
   
         if (!of_match_compatible(phandle, compatible))          if (!of_compatible_match(phandle, compat_data))
                 return -1;                  return -1;
   
         return phandle;          return phandle;

Legend:
Removed from v.1.23.2.1  
changed lines
  Added in v.1.23.2.2

CVSweb <webmaster@jp.NetBSD.org>