-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df04f83
commit 6708298
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,8 @@ | |
#include <linux/usb.h> | ||
#include <linux/i2c.h> | ||
|
||
#define DRV_VERSION "1.0" | ||
|
||
#define CH341_I2C_LOW_SPEED 0 // low speed - 20kHz | ||
#define CH341_I2C_STANDARD_SPEED 1 // standard speed - 100kHz | ||
#define CH341_I2C_FAST_SPEED 2 // fast speed - 400kHz | ||
|
@@ -278,5 +280,6 @@ module_usb_driver(i2c_ch341_usb_driver); | |
/* ----- end of usb layer ------------------------------------------------ */ | ||
|
||
MODULE_AUTHOR("Tse Lun Bien <[email protected]>"); | ||
MODULE_DESCRIPTION("i2c-ch341-usb driver v1.0"); | ||
MODULE_DESCRIPTION("i2c-ch341-usb driver"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_VERSION(DRV_VERSION); |