i3c: ast2600: set variable ast2600_i3c_ops storage-class-specifier to static
authorTom Rix <trix@redhat.com>
Sat, 29 Apr 2023 13:46:01 +0000 (09:46 -0400)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Sun, 30 Apr 2023 21:50:26 +0000 (23:50 +0200)
smatch reports
drivers/i3c/master/ast2600-i3c-master.c:121:34: warning: symbol
  'ast2600_i3c_ops' was not declared. Should it be static?

This variable is only used in its defining file, so it should be static.

Signed-off-by: Tom Rix <trix@redhat.com>
Reviewed-by: Jeremy Kerr <jk@codeconstruct.com.au>
Link: https://lore.kernel.org/r/20230429134601.2688558-1-trix@redhat.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/i3c/master/ast2600-i3c-master.c

index b72c12c5168fe59f0a0ad09b5fddc82e0c51549f..09ed19d489e9c7320e6eff25d9dca74ab1c7d948 100644 (file)
@@ -118,7 +118,7 @@ static void ast2600_i3c_set_dat_ibi(struct dw_i3c_master *i3c,
        }
 }
 
-const struct dw_i3c_platform_ops ast2600_i3c_ops = {
+static const struct dw_i3c_platform_ops ast2600_i3c_ops = {
        .init = ast2600_i3c_init,
        .set_dat_ibi = ast2600_i3c_set_dat_ibi,
 };