这篇教程C++ wifi_status_cb函数代码示例写得很实用,希望能帮到您。
本文整理汇总了C++中wifi_status_cb函数的典型用法代码示例。如果您正苦于以下问题:C++ wifi_status_cb函数的具体用法?C++ wifi_status_cb怎么用?C++ wifi_status_cb使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。 在下文中一共展示了wifi_status_cb函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。 示例1: origen_wifi_set_detect/* * This will be called at init time of WLAN driver */static int origen_wifi_set_detect(bool val){ if (!wifi_status_cb) { printk(KERN_WARNING "WLAN: Nobody to notify/n"); return -EAGAIN; } if (true == val) { origen_wlan_setup_power(true); wifi_status_cb(&s3c_device_hsmmc3, 1); } else { origen_wlan_setup_power(false); wifi_status_cb(&s3c_device_hsmmc3, 0); } return 0;}
开发者ID:mskim77,项目名称:hardkernel-linux,代码行数:19,
示例2: dalmore_wifi_set_carddetectstatic int dalmore_wifi_set_carddetect(int val){ pr_debug("%s: %d/n", __func__, val); if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else pr_warning("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Mrchenkeyu,项目名称:android_kernel_zte_pluto,代码行数:9,
示例3: shinano_wifi_set_carddetectint shinano_wifi_set_carddetect(int val){ shinano_wifi_cd = val; if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else printk(KERN_WARNING "%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Berrrry,项目名称:android_Kernel_sony_msm8974,代码行数:9,
示例4: latona_wifi_set_carddetectint latona_wifi_set_carddetect(int val){ pr_info("%s: %d/n", __func__, val); latona_wifi_cd = val; if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else pr_info("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Yi-Pei,项目名称:android_kernel_latona,代码行数:10,
示例5: enterprise_wifi_set_carddetect//static int enterprise_wifi_set_carddetect(int val)int enterprise_wifi_set_carddetect(int val){ printk("%s: %d/n", __func__, val); enterprise_wifi_cd = val; if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else pr_warning("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:McSun,项目名称:HTC-One-X-3.1,代码行数:11,
示例6: chacha_wifi_set_carddetectint chacha_wifi_set_carddetect(int val){ printk(KERN_INFO "%s: %d/n", __func__, val); chacha_wifi_cd = val; if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else printk(KERN_WARNING "%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Kevindeving,项目名称:CM_FIRE_KERNEL,代码行数:10,
示例7: mahimahi_wifi_set_carddetectint mahimahi_wifi_set_carddetect(int val){ pr_info("%s: %d/n", __func__, val); mahimahi_wifi_cd = val; if (wifi_status_cb) { wifi_status_cb(val, wifi_status_cb_devid); } else pr_warning("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Redux,项目名称:rx-kernel,代码行数:10,
示例8: mapphone_wifi_set_carddetectint mapphone_wifi_set_carddetect(int val){ printk("%s: %d/n", __func__, val); mapphone_wifi_cd = val; if (wifi_status_cb) { wifi_status_cb(val, wifi_status_cb_devid); } else printk(KERN_WARNING "%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Bdaman80,项目名称:BDA-ACTV,代码行数:10,
示例9: vcm30_t124_wifi_set_carddetectstatic int vcm30_t124_wifi_set_carddetect(int val){ if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else pr_warn("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Beta1440,项目名称:Sublime-N9,代码行数:10,
示例10: p3_wifi_set_carddetectstatic int p3_wifi_set_carddetect(int val){ printk(KERN_INFO "%s: start/n", __func__); pr_debug("%s: %d/n", __func__, val); if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else pr_warning("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:AAccount,项目名称:android_kernel_samsung_p4,代码行数:10,
示例11: msm7x30_wifi_set_carddetectstatic int msm7x30_wifi_set_carddetect(int val){ pr_debug("%s: %d/n", __func__, val); msm7x30_wifi_cd = val; if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else pr_warning("%s: nobody to notify/n", __func__); return 0;}
开发者ID:hiikezoe,项目名称:android_kernel_kyocera_msm7630,代码行数:11,
示例12: rk29sdk_wifi_set_carddetectint rk29sdk_wifi_set_carddetect(int val){ pr_info("%s:%d/n", __func__, val); rk29sdk_wifi_cd = val; if (wifi_status_cb){ wifi_status_cb(val, wifi_status_cb_devid); }else { pr_warning("%s,in mmc1 nobody to notify/n", __func__); } return 0; }
开发者ID:DwaineGarden,项目名称:kernel_rk3188,代码行数:11,
示例13: bcm4329_wifi_set_carddetectint bcm4329_wifi_set_carddetect(int val){ printk("%s: %d/n", __func__, val); wifi_on=val; bcm4329_wifi_cd = val; if (wifi_status_cb) { wifi_status_cb(wifi_status_cb_devid, val); } else printk("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:Frontier314,项目名称:kernel_s702hf,代码行数:11,
示例14: amlogic_wifi_set_carddetectint amlogic_wifi_set_carddetect(int val){ amlogic_wifi_cd = val; if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else printk("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:CoreTech-Development,项目名称:buildroot-linux-kernel-m3,代码行数:11,
示例15: shuttle_wifi_set_cd/* Used to set the virtual CD of wifi adapter */int shuttle_wifi_set_cd(int val){ pr_debug("%s: %d/n", __func__, val); /* Let the SDIO infrastructure know about the change */ if (wifi_status_cb) { wifi_status_cb(val, wifi_status_cb_devid); } else pr_info("%s: Nobody to notify/n", __func__); return 0;}
开发者ID:clemsyn,项目名称:rel-15r7,代码行数:13,
示例16: brcm_wlan_set_carddetectstatic int brcm_wlan_set_carddetect(int val){ pr_debug("%s: wifi_status_cb : %p, devid : %p, val : %d/n", __func__, wifi_status_cb, wifi_status_cb_devid, val); brcm_wifi_cd = val; if (wifi_status_cb) wifi_status_cb(val, wifi_status_cb_devid); else pr_warning("%s: Nobody to notify/n", __func__); /* msleep(200); wait for carddetect */ return 0;}
开发者ID:4ptiv4,项目名称:d2usc-tw-jb,代码行数:13,
示例17: wlan_device_set_carddetectint wlan_device_set_carddetect(int val){ pr_info("%s: %d/n", __func__, val);#if 0 wlan_device_cd = val; if (wifi_status_cb) { wifi_status_cb(val, wifi_status_cb_devid); } else pr_warning("%s: Nobody to notify/n", __func__);#endif#ifdef CONFIG_WLAN_SDIO sdhci_bus_scan();#endif return 0;}
开发者ID:LinkLunk,项目名称:android_kernel_samsung_mint,代码行数:16,
示例18: rhea_wifi_set_carddetectstatic int rhea_wifi_set_carddetect(int val){ pr_debug("%s: %d/n", __func__, val); printk(KERN_ERR " %s INSIDE rhea_wifi_set_carddetect/n",__FUNCTION__); rhea_wifi_cd = val; if (wifi_status_cb) { printk(KERN_ERR " %s CALLBACK NOT NULL/n",__FUNCTION__); wifi_status_cb(val, wifi_status_cb_devid); printk(KERN_ERR " %s CALLBACK COMPLETE/n",__FUNCTION__); } else pr_warning("%s: Nobody to notify/n", __func__);// if (val == 0)// bcm_sdiowl_term(); return 0;}
开发者ID:0TK0,项目名称:muZic_kernel_ivoryss,代码行数:16,
示例19: wlan_device_set_carddetectint wlan_device_set_carddetect(int val){ pr_info("%s: %d/n", __func__, val); mdelay(100);#if 0 wlan_device_cd = val; if (wifi_status_cb) { wifi_status_cb(val, wifi_status_cb_devid); } else pr_warning("%s: Nobody to notify/n", __func__);#endif#ifdef CONFIG_WLAN_SDIO// sdhci_bus_scan(); if(wlan_mmc) { mmc_detect_change(wlan_mmc, 0); } else { pr_info("%s wlan_mmc is null,carddetect failed /n ",__func__); }#endif return 0;}
开发者ID:AnDrOiiiD,项目名称:android_kernel_samsung_kanas3gxx,代码行数:22,
示例20: brcm_wlan_powerstatic int brcm_wlan_power(int onoff){ printk(KERN_INFO"------------------------------------------------"); printk(KERN_INFO"------------------------------------------------/n"); printk(KERN_INFO"%s Enter: power %s/n", __func__, onoff ? "on" : "off"); if (onoff) { /* if (gpio_request(GPIO_WL_REG_ON, "WL_REG_ON")) { printk("Failed to request for WL_REG_ON/n"); } */#if defined(CONFIG_SEC_H_PROJECT) || defined(CONFIG_SEC_MONTBLANC_PROJECT)/ || defined(CONFIG_SEC_VIENNA_PROJECT) || defined(CONFIG_MACH_KS01SKT)/ || defined(CONFIG_TIZEN_R_PROJECT) || defined(CONFIG_MACH_B3) printk(KERN_INFO"WL_REG_ON on-step : [%d]/n" , gpio_get_value(GPIO_WL_REG_ON)); if (gpio_direction_output(GPIO_WL_REG_ON, 1)) { printk(KERN_ERR "%s: check WL_REG_ON pin for H/n", __func__);#else if (ice_gpiox_set(FPGA_GPIO_WLAN_EN, 1)) { // yhcha-patch#endif /* defined CONFIG_SEC_H_PROJECT */ printk(KERN_ERR "%s: WL_REG_ON failed to pull up/n", __func__); return -EIO; }#if defined(CONFIG_SEC_H_PROJECT) || defined(CONFIG_SEC_MONTBLANC_PROJECT)/ || defined(CONFIG_SEC_VIENNA_PROJECT) || defined(CONFIG_MACH_KS01SKT)/ || defined(CONFIG_TIZEN_R_PROJECT) || defined(CONFIG_MACH_B3) if(gpio_get_value(GPIO_WL_REG_ON)){ printk(KERN_INFO"WL_REG_ON on-step-2 : [%d]/n" , gpio_get_value(GPIO_WL_REG_ON)); printk("[%s] gpio ok!!!/n",__func__); } else { printk("[%s] gpio value is 0. We need reinit./n",__func__); if (gpio_tlmm_config(config_gpio_wl_reg_on[0], GPIO_CFG_ENABLE)) printk(KERN_ERR "%s: Failed to configure GPIO" " - WL_REG_ON/n", __func__); if (gpio_direction_output(GPIO_WL_REG_ON, 1)) printk(KERN_ERR "%s: WL_REG_ON " "failed to pull down/n", __func__); }#endif /* defined CONFIG_SEC_H_PROJECT */#if defined(CONFIG_BCM4339) || defined(CONFIG_BCM4335) || defined(CONFIG_BCM4354) || defined(CONFIG_BCM4334) /* Power on/off SDIO host */ sdio_ctrl_power((struct mmc_host *)wifi_mmc_host, onoff);#endif /* CONFIG_BCM4339 || CONFIG_BCM4335 || CONFIG_BCM4354 */ } else {#if defined(CONFIG_BCM4339) || defined(CONFIG_BCM4335) || defined(CONFIG_BCM4354) || defined(CONFIG_BCM4334) /* Power on/off SDIO host */ sdio_ctrl_power((struct mmc_host *)wifi_mmc_host, onoff);#endif /* CONFIG_BCM4339 || CONFIG_BCM4335 || CONFIG_BCM4354 */ /* if (gpio_request(GPIO_WL_REG_ON, "WL_REG_ON")) { printk("Failed to request for WL_REG_ON/n"); } */#if defined(CONFIG_SEC_H_PROJECT) || defined(CONFIG_SEC_MONTBLANC_PROJECT)/ || defined(CONFIG_SEC_VIENNA_PROJECT) || defined(CONFIG_MACH_KS01SKT)/ || defined(CONFIG_TIZEN_R_PROJECT) || defined(CONFIG_MACH_B3) if (gpio_direction_output(GPIO_WL_REG_ON, 0)) {#else if (ice_gpiox_set(FPGA_GPIO_WLAN_EN, 0)) { // yhcha-patch#endif /* defined CONFIG_SEC_H_PROJECT */ printk(KERN_ERR "%s: WL_REG_ON failed to pull down/n", __func__); return -EIO; } } return 0;}static int brcm_wlan_reset(int onoff){ /* gpio_set_value(GPIO_WLAN_ENABLE, onoff ? GPIO_LEVEL_HIGH : GPIO_LEVEL_LOW); */ return 0;}int brcm_wifi_status_register( void (*callback)(int card_present, void *dev_id), void *dev_id, void *mmc_host){ if (wifi_status_cb) return -EAGAIN; wifi_status_cb = callback; wifi_status_cb_devid = dev_id; wifi_mmc_host = mmc_host; printk(KERN_ERR "%s: callback is %p, devid is %p/n", __func__, wifi_status_cb, dev_id); return 0;}//.........这里部分代码省略.........
开发者ID:Biktorgj,项目名称:Gear_S_Kernel,代码行数:101,
注:本文中的wifi_status_cb函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 C++ wil_dbg_misc函数代码示例 C++ wifi_station_set_config函数代码示例 |