You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
There are many cases in which the company name is misspelled. The patch fixes these typos. Signed-off-by: Tao Huang <huangtao@rock-chips.com> Change-Id: I3c206728140bccf5ea0de76a16960aa8281d65b9
18 lines
619 B
C
18 lines
619 B
C
/*
|
|
* Copyright (C) 2017 Rockchip Electronics Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*/
|
|
|
|
#ifndef ANDROID_VERSION
|
|
#define ANDROID_VERSION(a, b, c, r) \
|
|
(((a) << 24) + ((b) << 16) + ((c) << 8) + (r))
|
|
#endif
|