summaryrefslogtreecommitdiff
path: root/py-smbus
diff options
context:
space:
mode:
authorkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2009-01-22 09:55:33 +0000
committerkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2009-01-22 09:55:33 +0000
commitdf18fcec9d6e9f0f457fd66c3c36a13a74dbcb23 (patch)
treec84e3e74b11e38b01acf89a3b655d1580bd03f50 /py-smbus
parentc1c61f7b7f0d884b86a03cffe2ec3383f6bae47c (diff)
downloadi2c-tools-df18fcec9d6e9f0f457fd66c3c36a13a74dbcb23.tar.gz
Clarify Linux kernel vs. GNU/Linux OS.
git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@5619 7894878c-1315-0410-8ee3-d5d059ff63e0
Diffstat (limited to 'py-smbus')
-rw-r--r--py-smbus/smbusmodule.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/py-smbus/smbusmodule.c b/py-smbus/smbusmodule.c
index afc54a4..a881448 100644
--- a/py-smbus/smbusmodule.c
+++ b/py-smbus/smbusmodule.c
@@ -34,9 +34,10 @@
PyDoc_STRVAR(SMBus_module_doc,
"This module defines an object type that allows SMBus transactions\n"
- "on Linux hosts. The host kernel must have I2C support, I2C device\n"
- "interface support, and a bus adapter driver. All of these can be\n"
- "either built-in to the kernel, or loaded from modules.\n"
+ "on hosts running the Linux kernel. The host kernel must have I2C\n"
+ "support, I2C device interface support, and a bus adapter driver.\n"
+ "All of these can be either built-in to the kernel, or loaded from\n"
+ "modules.\n"
"\n"
"Because the I2C device interface is opened R/W, users of this\n"
"module usually must have root permissions.\n");