Files
OpenCellular/include/version.h
Randall Spangler 2e0ae57990 Use __packed instead of __attribute__((packed))
The presubmit script for linux kernel style prefers the former.

BUG=none
TEST=none

Change-Id: I0a0a1eb039f45975ada075c1302d868071a7cfb1
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/26361
2012-06-28 17:40:39 -07:00

31 lines
805 B
C

/* Copyright (c) 2012 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.
*/
/* Version number for Chrome EC */
#ifndef __CROS_EC_VERSION_H
#define __CROS_EC_VERSION_H
#define STRINGIFY0(name) #name
#define STRINGIFY(name) STRINGIFY0(name)
#define CROS_EC_VERSION_COOKIE1 0xce112233
#define CROS_EC_VERSION_COOKIE2 0xce445566
#define CROS_EC_VERSION STRINGIFY(BOARD) "_" VERSION
#define CROS_EC_BUILD_INFO CROS_EC_VERSION " " DATE " " BUILDER
struct version_struct {
uint32_t cookie1;
char version[32];
uint32_t cookie2;
} __packed;
extern const struct version_struct version_data;
extern const char build_info[];
extern const char __version_struct_offset[];
#endif /* __CROS_EC_VERSION_H */