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