mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
source files mainly done by Louis. Signed-off-by: Louis Yung-Chieh Lo <yjlou@chromium.org> Change-Id: I93fa38126e208cf3e525828b37bb407099686c6e
17 lines
413 B
C
17 lines
413 B
C
/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Memory commands for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_MEMORY_COMMANDS_H
|
|
#define __CROS_EC_MEMORY_COMMANDS_H
|
|
|
|
#include "common.h"
|
|
|
|
/* Initializes the module. */
|
|
int memory_commands_init(void);
|
|
|
|
#endif /* __CROS_EC_MEMORY_COMMANDS_H */
|