repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
17 lines
435 B
C
17 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;
|
|
}
|