| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * container.c - ACPI Generic Container Driver |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 7 | 8 | * Copyright (C) 2004 FUJITSU LIMITED |
|---|
| 8 | 9 | * Copyright (C) 2004, 2013 Intel Corp. |
|---|
| 9 | 10 | * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
|---|
| 10 | | - * |
|---|
| 11 | | - * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|---|
| 12 | | - * |
|---|
| 13 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 14 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 15 | | - * the Free Software Foundation; either version 2 of the License, or (at |
|---|
| 16 | | - * your option) any later version. |
|---|
| 17 | | - * |
|---|
| 18 | | - * This program is distributed in the hope that it will be useful, but |
|---|
| 19 | | - * WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 20 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 21 | | - * General Public License for more details. |
|---|
| 22 | | - * |
|---|
| 23 | | - * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|---|
| 24 | 11 | */ |
|---|
| 25 | 12 | #include <linux/acpi.h> |
|---|
| 26 | 13 | #include <linux/container.h> |
|---|
| 27 | 14 | |
|---|
| 28 | 15 | #include "internal.h" |
|---|
| 29 | | - |
|---|
| 30 | | -#define _COMPONENT ACPI_CONTAINER_COMPONENT |
|---|
| 31 | | -ACPI_MODULE_NAME("container"); |
|---|
| 32 | 16 | |
|---|
| 33 | 17 | static const struct acpi_device_id container_device_ids[] = { |
|---|
| 34 | 18 | {"ACPI0004", 0}, |
|---|