Lines Matching refs:rfk
69 struct rfkill *rfk; in h1940bt_probe() local
95 rfk = rfkill_alloc(DRV_NAME, &pdev->dev, RFKILL_TYPE_BLUETOOTH, in h1940bt_probe()
97 if (!rfk) { in h1940bt_probe()
102 ret = rfkill_register(rfk); in h1940bt_probe()
106 platform_set_drvdata(pdev, rfk); in h1940bt_probe()
111 rfkill_destroy(rfk); in h1940bt_probe()
118 struct rfkill *rfk = platform_get_drvdata(pdev); in h1940bt_remove() local
123 if (rfk) { in h1940bt_remove()
124 rfkill_unregister(rfk); in h1940bt_remove()
125 rfkill_destroy(rfk); in h1940bt_remove()
127 rfk = NULL; in h1940bt_remove()