Lines Matching defs:reprobe
941 * turn it off on suspend and reprobe on resume. This mirrors how RTL devices
943 * also causes a reprobe on resume.
960 struct h5_btrtl_reprobe *reprobe =
964 ret = device_reprobe(reprobe->dev);
966 dev_err(reprobe->dev, "Reprobe error %d\n", ret);
968 put_device(reprobe->dev);
969 kfree(reprobe);
975 struct h5_btrtl_reprobe *reprobe;
977 reprobe = kzalloc(sizeof(*reprobe), GFP_KERNEL);
978 if (!reprobe)
983 INIT_WORK(&reprobe->work, h5_btrtl_reprobe_worker);
984 reprobe->dev = get_device(&h5->hu->serdev->dev);
985 queue_work(system_long_wq, &reprobe->work);