Skip to content

Commit

Permalink
serial: ifx6x60: minor cleanup
Browse files Browse the repository at this point in the history
renamed spi_driver variable to not be h/w specific
set driver name to use DRVNAME define
removed commented-out define

Signed-off-by: Russ Gorby <russ.gorby@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Russ Gorby authored and Greg Kroah-Hartman committed Feb 17, 2011
1 parent 2aff8d9 commit 8115be0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 4 additions & 4 deletions drivers/tty/serial/ifx6x60.c
Original file line number Diff line number Diff line change
Expand Up @@ -1333,9 +1333,9 @@ static const struct spi_device_id ifx_id_table[] = {
MODULE_DEVICE_TABLE(spi, ifx_id_table);

/* spi operations */
static const struct spi_driver ifx_spi_driver_6160 = {
static const struct spi_driver ifx_spi_driver = {
.driver = {
.name = "ifx6160",
.name = DRVNAME,
.bus = &spi_bus_type,
.pm = &ifx_spi_pm,
.owner = THIS_MODULE},
Expand All @@ -1357,7 +1357,7 @@ static void __exit ifx_spi_exit(void)
{
/* unregister */
tty_unregister_driver(tty_drv);
spi_unregister_driver((void *)&ifx_spi_driver_6160);
spi_unregister_driver((void *)&ifx_spi_driver);
}

/**
Expand Down Expand Up @@ -1399,7 +1399,7 @@ static int __init ifx_spi_init(void)
return result;
}

result = spi_register_driver((void *)&ifx_spi_driver_6160);
result = spi_register_driver((void *)&ifx_spi_driver);
if (result) {
pr_err("%s: spi_register_driver failed(%d)",
DRVNAME, result);
Expand Down
2 changes: 0 additions & 2 deletions drivers/tty/serial/ifx6x60.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
#define DRVNAME "ifx6x60"
#define TTYNAME "ttyIFX"

/* #define IFX_THROTTLE_CODE */

#define IFX_SPI_MAX_MINORS 1
#define IFX_SPI_TRANSFER_SIZE 2048
#define IFX_SPI_FIFO_SIZE 4096
Expand Down

0 comments on commit 8115be0

Please sign in to comment.