aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-s390/statfs.h
stat options
Period:
Authors:

Commits per author per week (path 'include/asm-s390/statfs.h')

AuthorW35 2025W36 2025W37 2025W38 2025Total
Total00000
gram is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _ACPI_INTERNAL_H_ #define _ACPI_INTERNAL_H_ #define PREFIX "ACPI: " acpi_status acpi_os_initialize1(void); int init_acpi_device_notify(void); int acpi_scan_init(void); void acpi_pci_root_init(void); void acpi_pci_link_init(void); void acpi_pci_root_hp_init(void); void acpi_processor_init(void); void acpi_platform_init(void); int acpi_sysfs_init(void); #ifdef CONFIG_ACPI_CONTAINER void acpi_container_init(void); #else static inline void acpi_container_init(void) {} #endif #ifdef CONFIG_ACPI_DOCK void acpi_dock_init(void); #else static inline void acpi_dock_init(void) {} #endif #ifdef CONFIG_ACPI_HOTPLUG_MEMORY void acpi_memory_hotplug_init(void); #else static inline void acpi_memory_hotplug_init(void) {} #endif #ifdef CONFIG_X86 void acpi_cmos_rtc_init(void); #else static inline void acpi_cmos_rtc_init(void) {} #endif extern bool acpi_force_hot_remove; void acpi_sysfs_add_hotplug_profile(struct acpi_hotplug_profile *hotplug, const char *name); int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler, const char *hotplug_profile_name); void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val); #ifdef CONFIG_DEBUG_FS extern struct dentry *acpi_debugfs_dir; int acpi_debugfs_init(void); #else static inline void acpi_debugfs_init(void) { return; } #endif #ifdef CONFIG_X86_INTEL_LPSS void acpi_lpss_init(void); #else