diff options
author | Roman Kiryanov <rkir@google.com> | 2018-08-27 11:23:07 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-09-14 15:31:30 +0200 |
commit | 468e62f92e90232260cd2dab49b7ca2fdf086c63 (patch) | |
tree | 226589c649e6e985af24c21fa4ffeb765232fb23 /drivers/platform/goldfish/goldfish_pipe.c | |
parent | 610a72b70733b6d5b7d3a1ee93f2e6daa2742ef3 (diff) | |
download | blackbird-op-linux-468e62f92e90232260cd2dab49b7ca2fdf086c63.tar.gz blackbird-op-linux-468e62f92e90232260cd2dab49b7ca2fdf086c63.zip |
platform: goldfish: pipe: Remove reduntant casting
Casting to u32 is not required here.
Signed-off-by: Roman Kiryanov <rkir@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/platform/goldfish/goldfish_pipe.c')
-rw-r--r-- | drivers/platform/goldfish/goldfish_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/goldfish/goldfish_pipe.c b/drivers/platform/goldfish/goldfish_pipe.c index e3c09ff7867a..ff0e150d15d5 100644 --- a/drivers/platform/goldfish/goldfish_pipe.c +++ b/drivers/platform/goldfish/goldfish_pipe.c @@ -828,7 +828,7 @@ static int goldfish_pipe_device_init(struct platform_device *pdev) dev->base + PIPE_REG_SIGNAL_BUFFER, dev->base + PIPE_REG_SIGNAL_BUFFER_HIGH); - writel((u32)MAX_SIGNALLED_PIPES, + writel(MAX_SIGNALLED_PIPES, dev->base + PIPE_REG_SIGNAL_BUFFER_COUNT); write_pa_addr(&dev->buffers->open_command_params, |