Jon Smirl wrote: > This is a forward port of the existing linux-zigbee code to 2.6.38.
Wonderful, thanks ! I've attached a patch that removes some trailing whitespaces and that also fixes a typo in net/zigbee/Kconfig that made kconfig unhappy. - Werner ---------------------------------- cut here ----------------------------------- ZigBee stack: fixed Kconfig-breaking typo; minor whitespace cleanup - drivers/ieee802154/serial.c, net/zigbee/Kconfig, net/zigbee/af_zigbee.c, net/zigbee/dgram.c: removed trailing whitespace - net/zigbee/Kconfig: fixed typo "&" (should have been "&&") Signed-off-by: Werner Almesberger <[email protected]> --- drivers/ieee802154/serial.c | 2 +- net/zigbee/Kconfig | 4 ++-- net/zigbee/af_zigbee.c | 2 +- net/zigbee/dgram.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/ieee802154/serial.c b/drivers/ieee802154/serial.c index e4485bc..6981d0e 100644 --- a/drivers/ieee802154/serial.c +++ b/drivers/ieee802154/serial.c @@ -397,7 +397,7 @@ process_command(struct zb_device *zbdev) serial_net_rx(zbdev); break; case RESP_ADDRESS: - pr_debug("Received address, %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n", + pr_debug("Received address, %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n", zbdev->data[0], zbdev->data[1], zbdev->data[2], zbdev->data[3], zbdev->data[4], zbdev->data[5], zbdev->data[6], zbdev->data[7]); break; diff --git a/net/zigbee/Kconfig b/net/zigbee/Kconfig index 7a0334d..85134a9 100644 --- a/net/zigbee/Kconfig +++ b/net/zigbee/Kconfig @@ -1,7 +1,7 @@ config ZIGBEE tristate "ZigBee Low-Rate Wireless Personal Area Networks support (EXPERIMENTAL)" - depends on EXPERIMENTAL & BROKEN + depends on EXPERIMENTAL && BROKEN ---help--- - + Say Y here to compile ZigBee support into the kernel or say M to compile it as modules. diff --git a/net/zigbee/af_zigbee.c b/net/zigbee/af_zigbee.c index b3eb775..820d668 100644 --- a/net/zigbee/af_zigbee.c +++ b/net/zigbee/af_zigbee.c @@ -216,7 +216,7 @@ static struct net_proto_family zb_family_ops = { .owner = THIS_MODULE, }; -/* +/* * Main ZigBEE NWK receive routine. */ static int zb_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev) diff --git a/net/zigbee/dgram.c b/net/zigbee/dgram.c index 1808fa1..4d9b682 100644 --- a/net/zigbee/dgram.c +++ b/net/zigbee/dgram.c @@ -151,7 +151,7 @@ static int dgram_ioctl(struct sock *sk, int cmd, unsigned long arg) } #if 0 - /* May be implement here the commands */ + /* May be implement here the commands */ case IEEE80215_SIOC_NETWORK_DISCOVERY: return ioctl_network_discovery(sk, (struct ieee80215_user_data __user *) arg); break; -- 1.7.0.4 ------------------------------------------------------------------------------ Enable your software for Intel(R) Active Management Technology to meet the growing manageability and security demands of your customers. Businesses are taking advantage of Intel(R) vPro (TM) technology - will your software be a part of the solution? Download the Intel(R) Manageability Checker today! http://p.sf.net/sfu/intel-dev2devmar _______________________________________________ Linux-zigbee-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-zigbee-devel
