1/*
2 * ssdt_conv.asl
3 *
4 * Copyright (c) 2017  Citrix Systems, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation; version 2.1 only. with the special
9 * exception on linking described in file LICENSE.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU Lesser General Public License for more details.
15 */
16
17/*
18 * Windows laptop/slate mode device
19 *
20 * See https://msdn.microsoft.com/en-us/windows/hardware/commercialize/design/device-experiences/continuum#method-2----use-the-injection-interface
21 */
22
23DefinitionBlock ("SSDT_LAPTOP_SLATE.aml", "SSDT", 2, "Xen", "HVM", 0)
24{
25    Device (CONV) {
26        Method (_HID, 0x0, NotSerialized) {
27            Return("ID9001")
28        }
29        Name (_CID, "PNP0C60")
30    }
31}
32
33/*
34 * Local variables:
35 * tab-width: 4
36 * indent-tabs-mode: nil
37 * End:
38 */
39