Commit d16abd30 authored by Caesar Wang's avatar Caesar Wang Committed by Greg Kroah-Hartman

nvmem: sunxi: trivial: fix code style

this pacthset try to fix the code style for sunxi.
Signed-off-by: default avatarCaesar Wang <wxt@rock-chips.com>
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 313a72ff
...@@ -13,10 +13,8 @@ ...@@ -13,10 +13,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
*
*/ */
#include <linux/device.h> #include <linux/device.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/module.h> #include <linux/module.h>
...@@ -27,7 +25,6 @@ ...@@ -27,7 +25,6 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/random.h> #include <linux/random.h>
static struct nvmem_config econfig = { static struct nvmem_config econfig = {
.name = "sunxi-sid", .name = "sunxi-sid",
.read_only = true, .read_only = true,
...@@ -55,8 +52,8 @@ static u8 sunxi_sid_read_byte(const struct sunxi_sid *sid, ...@@ -55,8 +52,8 @@ static u8 sunxi_sid_read_byte(const struct sunxi_sid *sid,
} }
static int sunxi_sid_read(void *context, static int sunxi_sid_read(void *context,
const void *reg, size_t reg_size, const void *reg, size_t reg_size,
void *val, size_t val_size) void *val, size_t val_size)
{ {
struct sunxi_sid *sid = context; struct sunxi_sid *sid = context;
unsigned int offset = *(u32 *)reg; unsigned int offset = *(u32 *)reg;
...@@ -130,7 +127,7 @@ static int sunxi_sid_probe(struct platform_device *pdev) ...@@ -130,7 +127,7 @@ static int sunxi_sid_probe(struct platform_device *pdev)
if (IS_ERR(nvmem)) if (IS_ERR(nvmem))
return PTR_ERR(nvmem); return PTR_ERR(nvmem);
randomness = kzalloc(sizeof(u8) * size, GFP_KERNEL); randomness = kzalloc(sizeof(u8) * (size), GFP_KERNEL);
if (!randomness) { if (!randomness) {
ret = -EINVAL; ret = -EINVAL;
goto err_unreg_nvmem; goto err_unreg_nvmem;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment