mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-14 00:26:30 +00:00
Just changing comments, no code. BUG=chrome-os-partner:33432 BRANCH=none TEST=make buildall -j Change-Id: Ibffda40bff23a8c685feaef30a85e19157566245 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/229860 Reviewed-by: Randall Spangler <rspangler@chromium.org>
46 lines
734 B
C
46 lines
734 B
C
/* Copyright (c) 2014 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.
|
|
*/
|
|
|
|
#include "system.h"
|
|
#include "registers.h"
|
|
|
|
void system_pre_init(void)
|
|
{
|
|
|
|
}
|
|
|
|
/* TODO(crosbug.com/p/33818): How do we force a reset? */
|
|
void system_reset(int flags)
|
|
{
|
|
|
|
}
|
|
|
|
const char *system_get_chip_vendor(void)
|
|
{
|
|
return "g";
|
|
}
|
|
|
|
const char *system_get_chip_name(void)
|
|
{
|
|
return "cr50";
|
|
}
|
|
|
|
const char *system_get_chip_revision(void)
|
|
{
|
|
return G_REVISION_STR;
|
|
}
|
|
|
|
/* TODO(crosbug.com/p/33822): Where can we store stuff persistently? */
|
|
|
|
int system_get_vbnvcontext(uint8_t *block)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int system_set_vbnvcontext(const uint8_t *block)
|
|
{
|
|
return 0;
|
|
}
|