commit | aa0caa227b999f8278a3bdb62df036a585f0d11b | [log] [tgz] |
---|---|---|
author | Vasili Galka <vvv444@gmail.com> | Tue Aug 26 13:46:17 2014 +0300 |
committer | Tom Rini <trini@ti.com> | Mon Sep 15 13:32:56 2014 -0400 |
tree | ff2f50b33b54b82f42079905f8b98f09990f3042 | |
parent | 38c3fff7d42734d1cfa1dacaa1df000a3981eab7 [diff] |
openrisc: Fix a few type cast related warnings Use size_t type for positive offsets instead of the loff_t type. The later is defined as long long, which is larger than the pointer type on OpenRISC architecture and therefore the following warning was generated: "warning: cast to pointer from integer of different size" Signed-off-by: Vasili Galka <vvv444@gmail.com>