Skip to content

Commit

Permalink
clk: mmp: add linux/clk.h includes
Browse files Browse the repository at this point in the history
The common clk implementation for MMP broke without anyone noticing
when we stopped including linux/clk.h from the clk-provider header.

This did not show up in the defconfig builds because those use the
legacy MMP clk drivers, and it did not show up in my randconfig tests
either because I was testing with my mmp multiplatform series
applied, which at some point gained the fixup.

This fixes the three broken files.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 61ae765 ("clk: Remove clk.h from clk-provider.h")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
Arnd Bergmann authored and Stephen Boyd committed Nov 25, 2015
1 parent f66541b commit c21ac06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/clk/mmp/clk-mmp2.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* warranty of any kind, whether express or implied.
*/

#include <linux/clk.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/spinlock.h>
Expand Down
1 change: 1 addition & 0 deletions drivers/clk/mmp/clk-pxa168.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* warranty of any kind, whether express or implied.
*/

#include <linux/clk.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/spinlock.h>
Expand Down
1 change: 1 addition & 0 deletions drivers/clk/mmp/clk-pxa910.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* warranty of any kind, whether express or implied.
*/

#include <linux/clk.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/spinlock.h>
Expand Down

0 comments on commit c21ac06

Please sign in to comment.