[media] smiapp-pll: include linux/device.h in smiapp-pll.c, not in smiapp-pll.h

struct device has a forward declaration in the header already. The header is
only needed in the .c file.

Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Sakari Ailus 2014-10-18 06:16:20 -03:00 committed by Mauro Carvalho Chehab
parent fd2bfdc863
commit 8c20ee6e92
2 changed files with 1 additions and 2 deletions

View file

@ -16,6 +16,7 @@
* General Public License for more details.
*/
#include <linux/device.h>
#include <linux/gcd.h>
#include <linux/lcm.h>
#include <linux/module.h>

View file

@ -19,8 +19,6 @@
#ifndef SMIAPP_PLL_H
#define SMIAPP_PLL_H
#include <linux/device.h>
/* CSI-2 or CCP-2 */
#define SMIAPP_PLL_BUS_TYPE_CSI2 0x00
#define SMIAPP_PLL_BUS_TYPE_PARALLEL 0x01