mbox series

[GIT,PULL,3/5] firmware: tegra: Changes for v4.20-rc1

Message ID 20180927205942.30878-3-thierry.reding@gmail.com
State New
Headers show
Series [GIT,PULL,1/5] dt-bindings: Changes for v4.20-rc1 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-4.20-firmware

Message

Thierry Reding Sept. 27, 2018, 8:59 p.m. UTC
Hi ARM SoC maintainers,

The following changes since commit 5b394b2ddf0347bef56e50c69a58773c94343ff3:

  Linux 4.19-rc1 (2018-08-26 14:11:59 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-4.20-firmware

for you to fetch changes up to cd40f6ff124ce4a020d589f5c2727a69dd1ca176:

  firmware: tegra: bpmp: Implement suspend/resume support (2018-09-26 16:02:55 +0200)

Thanks,
Thierry

----------------------------------------------------------------
firmware: tegra: Changes for v4.20-rc1

This contains a fix for suspend/resume support for the BPMP found on
Tegra186 and Tegra194.

----------------------------------------------------------------
Thierry Reding (1):
      firmware: tegra: bpmp: Implement suspend/resume support

 drivers/firmware/tegra/bpmp.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

Comments

Arnd Bergmann Sept. 28, 2018, 8 p.m. UTC | #1
On Thu, Sep 27, 2018 at 10:59 PM Thierry Reding
<thierry.reding@gmail.com> wrote:

> firmware: tegra: Changes for v4.20-rc1
>
> This contains a fix for suspend/resume support for the BPMP found on
> Tegra186 and Tegra194.
>
> ----------------------------------------------------------------
> Thierry Reding (1):
>       firmware: tegra: bpmp: Implement suspend/resume support
>
>  drivers/firmware/tegra/bpmp.c | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)

This causes a build warning in randconfig builds:

drivers/firmware/tegra/bpmp.c:847:12: error: 'tegra_bpmp_resume'
defined but not used [-Werror=unused-function]
 static int tegra_bpmp_resume(struct device *dev)
            ^~~~~~~~~~~~~~~~~

Please fix and resubmit. Thanks,

     ARnd