<div dir="ltr"><div class="gmail_default" style="font-family:monospace,monospace">Thanks!</div><div class="gmail_default" style="font-family:monospace,monospace"><br></div><div class="gmail_default" style="font-family:monospace,monospace">Reviewed-by: Tali Perry <<a href="mailto:tali.perry1@gmail.com">tali.perry1@gmail.com</a>></div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Mon, Feb 16, 2026 at 10:58 AM Krzysztof Kozlowski <<a href="mailto:krzysztof.kozlowski@oss.qualcomm.com">krzysztof.kozlowski@oss.qualcomm.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Pointers should use NULL instead of explicit '0', as pointed out by<br>
sparse:<br>
<br>
i2c-npcm7xx.c:1387:61: warning: Using plain integer as NULL pointer<br>
<br>
Signed-off-by: Krzysztof Kozlowski <<a href="mailto:krzysztof.kozlowski@oss.qualcomm.com" target="_blank">krzysztof.kozlowski@oss.qualcomm.com</a>><br>
---<br>
drivers/i2c/busses/i2c-npcm7xx.c | 2 +-<br>
1 file changed, 1 insertion(+), 1 deletion(-)<br>
<br>
diff --git a/drivers/i2c/busses/i2c-npcm7xx.c b/drivers/i2c/busses/i2c-npcm7xx.c<br>
index 8b7e15240fb0..f667a873b81e 100644<br>
--- a/drivers/i2c/busses/i2c-npcm7xx.c<br>
+++ b/drivers/i2c/busses/i2c-npcm7xx.c<br>
@@ -1384,7 +1384,7 @@ static irqreturn_t npcm_i2c_int_slave_handler(struct npcm_i2c *bus)<br>
*/<br>
bus->operation = I2C_NO_OPER;<br>
bus->own_slave_addr = 0xFF;<br>
- i2c_slave_event(bus->slave, I2C_SLAVE_STOP, 0);<br>
+ i2c_slave_event(bus->slave, I2C_SLAVE_STOP, NULL);<br>
iowrite8(NPCM_I2CST_SLVSTP, bus->reg + NPCM_I2CST);<br>
if (bus->fifo_use) {<br>
npcm_i2c_clear_fifo_int(bus);<br>
-- <br>
2.51.0<br>
<br>
</blockquote></div>