sun/cassini: mark cas_resume() as __maybe_unused
authorWei Yongjun <weiyongjun1@huawei.com>
Tue, 7 Jul 2020 10:55:43 +0000 (18:55 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 7 Jul 2020 19:59:37 +0000 (12:59 -0700)
commit847d97e013dc8359312e2376c4805ef9d2a52f64
treefb216de92e11b2aa023759d9840a670ffe885669
parent86fc3f7074d029ce23271d492a1c8ffee3067244
sun/cassini: mark cas_resume() as __maybe_unused

In certain configurations without power management support, gcc report
the following warning:

drivers/net/ethernet/sun/cassini.c:5206:12: warning:
 'cas_resume' defined but not used [-Wunused-function]
 5206 | static int cas_resume(struct device *dev_d)
      |            ^~~~~~~~~~

Mark cas_resume() as __maybe_unused to make it clear.

Fixes: f193f4ebde3d ("sun/cassini: use generic power management")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sun/cassini.c