mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
f110176633
Allow the unit tests to verify the retrieval of the dirty shutdown count via smart commands, and allow the driver-load-time retrieval of the smart health payload to be simulated by nfit_test. Reviewed-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
16 lines
435 B
C
16 lines
435 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
// Copyright(c) 2018 Intel Corporation. All rights reserved.
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/printk.h>
|
|
#include "watermark.h"
|
|
#include <nfit.h>
|
|
|
|
nfit_test_watermark(acpi_nfit);
|
|
|
|
/* strong / override definition of nfit_intel_shutdown_status */
|
|
void nfit_intel_shutdown_status(struct nfit_mem *nfit_mem)
|
|
{
|
|
set_bit(NFIT_MEM_DIRTY_COUNT, &nfit_mem->flags);
|
|
nfit_mem->dirty_shutdown = 42;
|
|
}
|