diff options
author | Loic PALLARDY <loic.pallardy@st.com> | 2016-09-06 10:39:42 +0300 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-09-06 21:06:21 +0300 |
commit | cd5830512044d301d397d1499738ee00a8836247 (patch) | |
tree | 7c86048380a51fae30de833fa2bf3bf8fe234abf /include/linux/remoteproc.h | |
parent | f4e1f9bb3498c0a9a3b92815f2ea64650eac1715 (diff) | |
download | linux-cd5830512044d301d397d1499738ee00a8836247.tar.xz |
remoteproc: Modify FW_RSC_ADDR_ANY definition
Replace 0xFFFFFFFFFFFFFFFF by -1 to fit any type.
Signed-off-by: Loic Pallardy <loic.pallardy@st.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'include/linux/remoteproc.h')
-rw-r--r-- | include/linux/remoteproc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/remoteproc.h b/include/linux/remoteproc.h index d488f9e1e08c..80e1cba78a04 100644 --- a/include/linux/remoteproc.h +++ b/include/linux/remoteproc.h @@ -118,7 +118,7 @@ enum fw_resource_type { RSC_LAST = 4, }; -#define FW_RSC_ADDR_ANY (0xFFFFFFFFFFFFFFFF) +#define FW_RSC_ADDR_ANY (-1) /** * struct fw_rsc_carveout - physically contiguous memory request |