forked from Minki/linux
staging: most: dim2: rename module
This patch renames the folder and source files of the dim2 module. It is needed to clear the directory layout of the driver. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
77550c2012
commit
9249c6a6d3
@ -25,7 +25,7 @@ source "drivers/staging/most/aim-sound/Kconfig"
|
||||
|
||||
source "drivers/staging/most/aim-v4l2/Kconfig"
|
||||
|
||||
source "drivers/staging/most/hdm-dim2/Kconfig"
|
||||
source "drivers/staging/most/dim2/Kconfig"
|
||||
|
||||
source "drivers/staging/most/i2c/Kconfig"
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
# MediaLB configuration
|
||||
#
|
||||
|
||||
config HDM_DIM2
|
||||
tristate "DIM2 HDM"
|
||||
config MOST_DIM2
|
||||
tristate "DIM2"
|
||||
depends on HAS_IOMEM
|
||||
|
||||
---help---
|
||||
@ -13,4 +13,4 @@ config HDM_DIM2
|
||||
maintainer of this driver.
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called hdm_dim2.
|
||||
module will be called most_dim2.
|
4
drivers/staging/most/dim2/Makefile
Normal file
4
drivers/staging/most/dim2/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
obj-$(CONFIG_MOST_DIM2) += most_dim2.o
|
||||
|
||||
most_dim2-objs := dim2.o hal.o sysfs.o
|
||||
ccflags-y += -Idrivers/staging/
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_hdm.c - MediaLB DIM2 Hardware Dependent Module
|
||||
* dim2.c - MediaLB DIM2 Hardware Dependent Module
|
||||
*
|
||||
* Copyright (C) 2015-2016, Microchip Technology Germany II GmbH & Co. KG
|
||||
*/
|
||||
@ -20,10 +20,10 @@
|
||||
#include <linux/kthread.h>
|
||||
|
||||
#include "most/core.h"
|
||||
#include "dim2_hal.h"
|
||||
#include "dim2_hdm.h"
|
||||
#include "dim2_errors.h"
|
||||
#include "dim2_sysfs.h"
|
||||
#include "hal.h"
|
||||
#include "dim2.h"
|
||||
#include "errors.h"
|
||||
#include "sysfs.h"
|
||||
|
||||
#define DMA_CHANNELS (32 - 1) /* channel 0 is a system channel */
|
||||
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_hdm.h - MediaLB DIM2 HDM Header
|
||||
* dim2.h - MediaLB DIM2 HDM Header
|
||||
*
|
||||
* Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG
|
||||
*/
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_errors.h - Definitions of errors for DIM2 HAL API
|
||||
* errors.h - Definitions of errors for DIM2 HAL API
|
||||
* (MediaLB, Device Interface Macro IP, OS62420)
|
||||
*
|
||||
* Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_hal.c - DIM2 HAL implementation
|
||||
* hal.c - DIM2 HAL implementation
|
||||
* (MediaLB, Device Interface Macro IP, OS62420)
|
||||
*
|
||||
* Copyright (C) 2015-2016, Microchip Technology Germany II GmbH & Co. KG
|
||||
@ -8,9 +8,9 @@
|
||||
|
||||
/* Author: Andrey Shvetsov <andrey.shvetsov@k2l.de> */
|
||||
|
||||
#include "dim2_hal.h"
|
||||
#include "dim2_errors.h"
|
||||
#include "dim2_reg.h"
|
||||
#include "hal.h"
|
||||
#include "errors.h"
|
||||
#include "reg.h"
|
||||
#include <linux/stddef.h>
|
||||
#include <linux/kernel.h>
|
||||
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_hal.h - DIM2 HAL interface
|
||||
* hal.h - DIM2 HAL interface
|
||||
* (MediaLB, Device Interface Macro IP, OS62420)
|
||||
*
|
||||
* Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG
|
||||
@ -10,7 +10,7 @@
|
||||
#define _DIM2_HAL_H
|
||||
|
||||
#include <linux/types.h>
|
||||
#include "dim2_reg.h"
|
||||
#include "reg.h"
|
||||
|
||||
/*
|
||||
* The values below are specified in the hardware specification.
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_reg.h - Definitions for registers of DIM2
|
||||
* reg.h - Definitions for registers of DIM2
|
||||
* (MediaLB, Device Interface Macro IP, OS62420)
|
||||
*
|
||||
* Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_sysfs.c - MediaLB sysfs information
|
||||
* sysfs.c - MediaLB sysfs information
|
||||
*
|
||||
* Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG
|
||||
*/
|
||||
@ -10,7 +10,7 @@
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include "dim2_sysfs.h"
|
||||
#include "sysfs.h"
|
||||
|
||||
struct bus_attr {
|
||||
struct attribute attr;
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* dim2_sysfs.h - MediaLB sysfs information
|
||||
* sysfs.h - MediaLB sysfs information
|
||||
*
|
||||
* Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG
|
||||
*/
|
Loading…
Reference in New Issue
Block a user