#!/bin/sh
module="gpio"
device="gpio"

# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1

echo "$module unloaded"

# Remove stale nodes
rm -f /dev/${device} 





