Change the clock name and work queue names to differentiate them from
the names used in sfc.ko.
Signed-off-by: Martin Habets <habetsm.xilinx@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
int efx_siena_create_reset_workqueue(void)
{
- reset_workqueue = create_singlethread_workqueue("sfc_reset");
+ reset_workqueue = create_singlethread_workqueue("sfc_siena_reset");
if (!reset_workqueue) {
printk(KERN_ERR "Failed to create reset workqueue\n");
return -ENOMEM;
static const struct ptp_clock_info efx_phc_clock_info = {
.owner = THIS_MODULE,
- .name = "sfc",
+ .name = "sfc_siena",
.max_adj = MAX_PPB,
.n_alarm = 0,
.n_ext_ts = 0,
skb_queue_head_init(&ptp->rxq);
skb_queue_head_init(&ptp->txq);
- ptp->workwq = create_singlethread_workqueue("sfc_ptp");
+ ptp->workwq = create_singlethread_workqueue("sfc_siena_ptp");
if (!ptp->workwq) {
rc = -ENOMEM;
goto fail2;
goto fail3;
} else if (ptp->phc_clock) {
INIT_WORK(&ptp->pps_work, efx_ptp_pps_worker);
- ptp->pps_workwq = create_singlethread_workqueue("sfc_pps");
+ ptp->pps_workwq =
+ create_singlethread_workqueue("sfc_siena_pps");
if (!ptp->pps_workwq) {
rc = -ENOMEM;
goto fail4;