Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b89225a1 authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab
Browse files

[media] smiapp: Remove smiapp-debug.h in favour of dynamic debug



Remove smiapp-debug.h and let people use CONFIG_DYNAMIC_DEBUG instead. The
option only affected to when debug information was being printed.

Signed-off-by: default avatarSakari Ailus <sakari.ailus@maxwell.research.nokia.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 272ed119
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -22,8 +22,6 @@
 *
 */

#include "smiapp/smiapp-debug.h"

#include <linux/gcd.h>
#include <linux/lcm.h>
#include <linux/module.h>
+0 −7
Original line number Diff line number Diff line
@@ -4,10 +4,3 @@ config VIDEO_SMIAPP
	select VIDEO_SMIAPP_PLL
	---help---
	  This is a generic driver for SMIA++/SMIA camera modules.

config VIDEO_SMIAPP_DEBUG
	bool "Enable debugging for the generic SMIA++/SMIA driver"
	depends on VIDEO_SMIAPP
	---help---
	  Enable debugging output in the generic SMIA++/SMIA driver. If you
	  are developing the driver you might want to enable this.
+0 −2
Original line number Diff line number Diff line
@@ -26,8 +26,6 @@
 *
 */

#include "smiapp-debug.h"

#include <linux/delay.h>
#include <linux/device.h>
#include <linux/gpio.h>
+0 −32
Original line number Diff line number Diff line
/*
 * drivers/media/video/smiapp/smiapp-debug.h
 *
 * Generic driver for SMIA/SMIA++ compliant camera modules
 *
 * Copyright (C) 2011--2012 Nokia Corporation
 * Contact: Sakari Ailus <sakari.ailus@maxwell.research.nokia.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#ifndef SMIAPP_DEBUG_H
#define SMIAPP_DEBUG_H

#ifdef CONFIG_VIDEO_SMIAPP_DEBUG
#define DEBUG
#endif

#endif
+0 −2
Original line number Diff line number Diff line
@@ -22,8 +22,6 @@
 *
 */

#include "smiapp-debug.h"

#include <linux/delay.h>

#include "smiapp.h"
Loading