Lines Matching refs:lid_switch_idev
33 static struct input_dev *lid_switch_idev; variable
127 if (!!test_bit(SW_LID, lid_switch_idev->sw) == !lid_open) in send_lid_state()
130 input_report_switch(lid_switch_idev, SW_LID, !lid_open); in send_lid_state()
131 input_sync(lid_switch_idev); in send_lid_state()
132 pm_wakeup_event(&lid_switch_idev->dev, 0); in send_lid_state()
278 if (!device_may_wakeup(&lid_switch_idev->dev)) { in xo1_sci_suspend()
500 lid_switch_idev = input_allocate_device(); in setup_lid_switch()
501 if (!lid_switch_idev) in setup_lid_switch()
504 lid_switch_idev->name = "Lid Switch"; in setup_lid_switch()
505 lid_switch_idev->phys = DRV_NAME "/input2"; in setup_lid_switch()
506 set_bit(EV_SW, lid_switch_idev->evbit); in setup_lid_switch()
507 set_bit(SW_LID, lid_switch_idev->swbit); in setup_lid_switch()
509 lid_switch_idev->dev.parent = &pdev->dev; in setup_lid_switch()
510 device_set_wakeup_capable(&lid_switch_idev->dev, true); in setup_lid_switch()
512 r = input_register_device(lid_switch_idev); in setup_lid_switch()
521 input_free_device(lid_switch_idev); in setup_lid_switch()
527 input_unregister_device(lid_switch_idev); in free_lid_switch()