Revision 8018e02a87031a5e8afcbd9d35133edd520076bb authored by Linus Torvalds on 22 September 2023, 20:25:13 UTC, committed by Linus Torvalds on 22 September 2023, 20:25:13 UTC
Pull thermal control fix from Rafael Wysocki:
 "Unbreak the trip point update sysfs interface that has been broken
  since the 6.3 cycle (Rafael Wysocki)"

* tag 'thermal-6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
  thermal: sysfs: Fix trip_point_hyst_store()
2 parent s b184c04 + ea31056
Raw File
virtio_anchor.c
// SPDX-License-Identifier: GPL-2.0-only
#include <linux/virtio.h>
#include <linux/virtio_anchor.h>

bool virtio_require_restricted_mem_acc(struct virtio_device *dev)
{
	return true;
}
EXPORT_SYMBOL_GPL(virtio_require_restricted_mem_acc);

static bool virtio_no_restricted_mem_acc(struct virtio_device *dev)
{
	return false;
}

bool (*virtio_check_mem_acc_cb)(struct virtio_device *dev) =
	virtio_no_restricted_mem_acc;
EXPORT_SYMBOL_GPL(virtio_check_mem_acc_cb);
back to top