#!/bin/bash
####################################################################
#
#      File: S45eusb-load-ehci-hcd
#
#      Description:
#       Initialization/Cleanup of ehci-hcd usb module for usb mass storage
#         device 
#
# Copyright (c) 2015 by cisco Systems, Inc.
# All rights reserved.
#
#####################################################################


. /etc/init.d/mod_ins/module-load-functions

case $1 in
    start)
        action "" modprobe ehci-hcd  > /dev/null
    ;;
    stop)
        action "" rmmod ehci-hcd 
    ;;
esac

