提交 8a66b31a 编写于 作者: C Colin Ian King 提交者: Greg Kroah-Hartman

serial: 8250_bcm7271: use NULL to initialized a null pointer

Pointer membase is currently being in initialized with zero rather
than NULL. Fix this.
Acked-by: NFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: NColin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210719095533.14017-1-colin.king@canonical.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 13043207
......@@ -941,7 +941,7 @@ static int brcmuart_probe(struct platform_device *pdev)
struct clk *baud_mux_clk;
struct uart_8250_port up;
struct resource *irq;
void __iomem *membase = 0;
void __iomem *membase = NULL;
resource_size_t mapbase = 0;
u32 clk_rate = 0;
int ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册