Commit 653d1290 authored by Mike Lockwood's avatar Mike Lockwood Committed by Greg Kroah-Hartman

Staging: android: timed_gpio: Rename android_timed_gpio to timed_gpio

Signed-off-by: default avatarMike Lockwood <lockwood@android.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 99f41131
/* drivers/android/timed_gpio.c /* drivers/misc/timed_gpio.c
* *
* Copyright (C) 2008 Google, Inc. * Copyright (C) 2008 Google, Inc.
* Author: Mike Lockwood <lockwood@android.com> * Author: Mike Lockwood <lockwood@android.com>
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include <linux/err.h> #include <linux/err.h>
#include <asm/arch/gpio.h> #include <asm/arch/gpio.h>
#include "android_timed_gpio.h" #include "timed_gpio.h"
static struct class *timed_gpio_class; static struct class *timed_gpio_class;
...@@ -88,7 +88,7 @@ static ssize_t gpio_enable_store( ...@@ -88,7 +88,7 @@ static ssize_t gpio_enable_store(
static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, gpio_enable_show, gpio_enable_store); static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, gpio_enable_show, gpio_enable_store);
static int android_timed_gpio_probe(struct platform_device *pdev) static int timed_gpio_probe(struct platform_device *pdev)
{ {
struct timed_gpio_platform_data *pdata = pdev->dev.platform_data; struct timed_gpio_platform_data *pdata = pdev->dev.platform_data;
struct timed_gpio *cur_gpio; struct timed_gpio *cur_gpio;
...@@ -130,7 +130,7 @@ static int android_timed_gpio_probe(struct platform_device *pdev) ...@@ -130,7 +130,7 @@ static int android_timed_gpio_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int android_timed_gpio_remove(struct platform_device *pdev) static int timed_gpio_remove(struct platform_device *pdev)
{ {
struct timed_gpio_platform_data *pdata = pdev->dev.platform_data; struct timed_gpio_platform_data *pdata = pdev->dev.platform_data;
struct timed_gpio_data *gpio_data = platform_get_drvdata(pdev); struct timed_gpio_data *gpio_data = platform_get_drvdata(pdev);
...@@ -146,32 +146,32 @@ static int android_timed_gpio_remove(struct platform_device *pdev) ...@@ -146,32 +146,32 @@ static int android_timed_gpio_remove(struct platform_device *pdev)
return 0; return 0;
} }
static struct platform_driver android_timed_gpio_driver = { static struct platform_driver timed_gpio_driver = {
.probe = android_timed_gpio_probe, .probe = timed_gpio_probe,
.remove = android_timed_gpio_remove, .remove = timed_gpio_remove,
.driver = { .driver = {
.name = "android-timed-gpio", .name = "timed-gpio",
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
}; };
static int __init android_timed_gpio_init(void) static int __init timed_gpio_init(void)
{ {
timed_gpio_class = class_create(THIS_MODULE, "timed_output"); timed_gpio_class = class_create(THIS_MODULE, "timed_output");
if (IS_ERR(timed_gpio_class)) if (IS_ERR(timed_gpio_class))
return PTR_ERR(timed_gpio_class); return PTR_ERR(timed_gpio_class);
return platform_driver_register(&android_timed_gpio_driver); return platform_driver_register(&timed_gpio_driver);
} }
static void __exit android_timed_gpio_exit(void) static void __exit timed_gpio_exit(void)
{ {
class_destroy(timed_gpio_class); class_destroy(timed_gpio_class);
platform_driver_unregister(&android_timed_gpio_driver); platform_driver_unregister(&timed_gpio_driver);
} }
module_init(android_timed_gpio_init); module_init(timed_gpio_init);
module_exit(android_timed_gpio_exit); module_exit(timed_gpio_exit);
MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>"); MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>");
MODULE_DESCRIPTION("Android timed gpio driver"); MODULE_DESCRIPTION("timed gpio driver");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
/* include/linux/android_timed_gpio.h /* include/linux/timed_gpio.h
* *
* Copyright (C) 2008 Google, Inc. * Copyright (C) 2008 Google, Inc.
* *
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
* *
*/ */
#ifndef _LINUX_ANDROID_TIMED_GPIO_H #ifndef _LINUX_TIMED_GPIO_H
#define _LINUX_ANDROID_TIMED_GPIO_H #define _LINUX_TIMED_GPIO_H
struct timed_gpio { struct timed_gpio {
const char *name; const char *name;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment