diff options
author | Arnd Bergmann <arnd@arndb.de> | 2023-01-11 01:09:43 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2023-01-11 01:09:44 +0300 |
commit | 45c734817847e580163d85635fb4ea442056d489 (patch) | |
tree | 720b82959d3a9c7224bb2d360864546f037a84ec | |
parent | 42c18d13623d863e1cea018042546b0bd5a5dd11 (diff) | |
parent | a1904fa4dfc929e5ea36bd409cf0d800df56fb8b (diff) | |
download | linux-45c734817847e580163d85635fb4ea442056d489.tar.xz |
Merge tag 'arm-soc/for-6.2/drivers-fixes' of https://github.com/Broadcom/stblinux into arm/fixes
This pull request contains Broadcom ARM/ARM64/MIPS SoCs drivers fixes
for 6.2, please pull the following:
- Maxime fixes a sparse annotation for one of the Raspberry Pi firmware
clock request message
* tag 'arm-soc/for-6.2/drivers-fixes' of https://github.com/Broadcom/stblinux:
firmware: raspberrypi: Fix type assignment
Link: https://lore.kernel.org/r/20230110215025.1008437-1-f.fainelli@gmail.com
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | include/soc/bcm2835/raspberrypi-firmware.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/soc/bcm2835/raspberrypi-firmware.h b/include/soc/bcm2835/raspberrypi-firmware.h index ab955591cb72..73cac8d0287e 100644 --- a/include/soc/bcm2835/raspberrypi-firmware.h +++ b/include/soc/bcm2835/raspberrypi-firmware.h @@ -170,7 +170,7 @@ struct rpi_firmware_clk_rate_request { #define RPI_FIRMWARE_CLK_RATE_REQUEST(_id) \ { \ - .id = _id, \ + .id = cpu_to_le32(_id), \ } #if IS_ENABLED(CONFIG_RASPBERRYPI_FIRMWARE) |