Lines Matching refs:rfk
62 struct rfkill *rfk; in h1940bt_probe() local
88 rfk = rfkill_alloc(DRV_NAME, &pdev->dev, RFKILL_TYPE_BLUETOOTH, in h1940bt_probe()
90 if (!rfk) { in h1940bt_probe()
95 ret = rfkill_register(rfk); in h1940bt_probe()
99 platform_set_drvdata(pdev, rfk); in h1940bt_probe()
104 rfkill_destroy(rfk); in h1940bt_probe()
111 struct rfkill *rfk = platform_get_drvdata(pdev); in h1940bt_remove() local
116 if (rfk) { in h1940bt_remove()
117 rfkill_unregister(rfk); in h1940bt_remove()
118 rfkill_destroy(rfk); in h1940bt_remove()
120 rfk = NULL; in h1940bt_remove()